function CreateXMLHttp()
{
var xmlhttp=null;
if (window.ActiveXObject)
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else if (window.XMLHttpRequest)
xmlhttp = new XMLHttpRequest();
return xmlhttp;