// JavaScript Document
/* SEND POST */
function sndEmail(email,product,name) {
	var xmlHttp = false;
	var values ='';
	
	try{
    	// Firefox, Opera 8.0+, Safari
    	xmlHttp=new XMLHttpRequest();
    }
	
	catch(e){
    	// Internet Explorer
		try{
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		
		catch(e){
			try{
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			}
			
			catch(e){
				alert("Your browser does not support AJAX!");
				return false;
			}
		  }
    }
	
	values = "email="+email+"&product="+product+"&name="+name;	
	xmlHttp.open("POST", "trial_mailer.php", true);
		
	xmlHttp.onreadystatechange = function(){
		if(xmlHttp.readyState == 4){
			/*var mess = xmlHttp.responseText;
			alert(mess);*/
			document.form1.submit();
		}
	}
	
	xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
	xmlHttp.send(values);
}