 $(document).ready( function()
 {
 	//$("#navbar > div.subnav").load("/scripts/include/header.php", {h_tab:h_tab,h_sec:h_sec,type:type} );
 });
 
function load_email()
{
	postdata = "func=load_email";
	document.getElementById('email-wrapper').style.display = "block";
	ax_request('/scripts/dsz.ajax.php', 'email', postdata);
}
function send_email_local()
{
 postdata = "func=send_email";
 postdata += "&sender_email=" + document.getElementById('sender_email').value;
 postdata += "&recip_email=" + document.getElementById('recip_email').value;
 if (document.getElementById('cc_sender').checked)
 {
 postdata += "&cc_sender=true";
 }
 postdata += "&sender_message=" + document.getElementById('sender_message').value;
 postdata += "&prod_id=" + prod_id;
 ax_request('/scripts/dsz.ajax.php', 'email', postdata);
}