// JavaScript Document
function createXMLHttpRequest()
{
	if(window.ActiveXObject)
	{
		xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	else if(window.XMLHttpRequest)
	{
		xmlHttp=new XMLHttpRequest();
	}
}
function infoLoad(val)
{
	var vals=val;
	var url="";
	url="/jscript/chklogin.asp?val="+vals;
	try
	{
		createXMLHttpRequest();
	}
	catch(exception){}
	if (!xmlHttp)
	{
		return false
	}
	xmlHttp.open("GET",url,true); 
	xmlHttp.onreadystatechange=function()
	{
		if(xmlHttp.readyState==4)
		{
			if(xmlHttp.status==200)
			{
				var strCookie=xmlHttp.responseText;
				document.getElementById("contact").innerHTML=strCookie;
                                
			}
			else
			{
				//alert("AA");
                                
				document.getElementById("contact").innerHTML="<table width='750' border='0' align='center' cellpadding='3' cellspacing='0'><tr><td width='75' align='right'>E - Mail：</td><td width='145' align='left'>********</td><td width='76' align='right'>QQ 号 码：</td><td width='146' align='left'>********</td><td width='281'>&nbsp;</td></tr><tr><td align='right'>联系电话：</td><td align='left'>********</td><td align='right'>手机号码：</td><td align='left'>********</td><td>&nbsp;</td></tr></table>";
			}
		}
	}
	xmlHttp.send(null);
	return;
}