function ajax_mail_account_info(elem, email){
	ajax_loading(getElement('submit'));
	var xmlHttp = getXMLHttp();
	xmlHttp.onreadystatechange = function(){
		if(xmlHttp.readyState == 4){
//this is the output (after call below)
			ajax_mail_account_info_update(xmlHttp.responseText, elem);
			ajax_loading_done();
		}
	}
//this is the input
	xmlHttp.open("GET", "/pest-graphs/forms/account_help/ajax-mail-account-info.php?email="+email, true);
	xmlHttp.send(null);
}
function ajax_mail_account_info_update(response, elem){
	elem.innerHTML = response;
}