
function ajaxRequestScript(ajaxurl)
{if(window.XMLHttpRequest){xmlhttp=new XMLHttpRequest();}else if(window.ActiveXObject){xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");}else{return false;}
xmlhttp.open("GET",ajaxurl,true);xmlhttp.onreadystatechange=function(){if(xmlhttp.readyState==4){if(xmlhttp.status==200)
{eval(xmlhttp.responseText);}
else
{if(document.getElementById("xmlHTTPProblemBox"))
{document.getElementById("xmlHTTPProblemBox").style.visibility="visible";}
if(document.getElementById("Createuser1_ctl00_xmlhttpPic"))
{document.getElementById("Createuser1_ctl00_xmlhttpPic").src="/picts/loose.gif";}}}}
xmlhttp.send(null);}
