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("由于网络原因与服务器连接暂时中断，请重新登陆。")
	}
	try
	{ var str11=xmlhttp.responseText //系统错误: -1072896748。
	}
	catch (exception)
	{if (exception.description=='系统错误: -1072896748。') 
		{	
	 	str11=""
		}
	}
        delete xmlhttp;
	return str11
}
function ieVersion(){var ua=window.navigator.userAgent;var msieIndex=ua.indexOf("MSIE")
if(msieIndex== -1)return 0;return ua.substring(msieIndex+5,msieIndex+6);}
var ieVer = ieVersion();

if(ieVer < 6 )   
  {
    if(ieVer==5) ieVer = "5.0";
    alert("您的IE版本号:"+ieVer+" ,请使用6.0或以上版本才能使用此功能。");window.close();location.href="blank.htm";
  } 
var includejsPath = "../report/classlib/";
function include(fileName)
{
document.write('<script type="text/javascript" src="'+includejsPath + fileName+'" ></script>');
}
