function SendHttp(sAspFile,sSend)
{if (navigator.onLine==false) 
    {return "你现在处于脱机状态,请联机后再试!"} 
    var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
 
    xmlhttp.Open("POST", sAspFile, false);
    //alert(xmlhttp.status);
	try { xmlhttp.Send("<root>"+sSend+"</root>");}
	catch (exception)
	{
	   alert("服务器忙!")
	}
	var str11;
	try
	{ 
           if(xmlhttp.status==200)      
	      str11=xmlhttp.responseText //系统错误: -1072896748。
	   else str11 = xmlhttp.status;
	}
	catch (exception)
	{if (exception.description=='系统错误: -1072896748。') 
		{	
	 	str11=""
		}
	}
        delete xmlhttp;
	return str11
}
 
 
 
 
