function sendAjaxMail(){
	if(window.location.href.indexOf('email=')!=-1) var address=window.location.href.split('email=')[1];
	if(address&&address.indexOf('&')) address=address.split('&')[0];
	if(window.location.href.indexOf('fName=')!=-1) var fName=window.location.href.split('fName=')[1]
	else return false;
	var xmlHttp;
	try{xmlHttp=new XMLHttpRequest();}
	catch (e){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;}}}
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){

		}
	}
	xmlHttp.open("GET","mailer.php?email="+address+"&fName="+fName,true);
	xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
	xmlHttp.setRequestHeader("Connection", "close");
	xmlHttp.send(null);
	return false;
}