jQuery(function(){
   jQuery.getJSON("http://www1.zhcall.com/chklogin.asp?callback=?")
})


function show(un)
{
  str="";
  if(un=="$$nologin")
  { 
	  str+="<li style=\"width:165px;\">用户名："
	  str+="<input class=\"top_input\" axLength=20 name=username onfocus=\"this.style.border='1px solid #77bbed'\" onblur=\"this.style.border='1px solid #b5b8c8'\"/> </li>"       
	  str+=" <li  style=\"width:165px;\">密  码："
	  str+="<input class=\"top_input\" type=password name=password onfocus=\"this.style.border='1px solid #77bbed'\" onblur=\"this.style.border='1px solid #b5b8c8'\"/> </li>"
	  str+=" <li style=\"margin-top:2px; display:block;width:70px;\">  "
	   str+="<input type=\"image\" src=\"http://www.zhcall.com/images/login02.gif\"  class=\"dsumbit\" value=\"登 录\" onMouseOver=\"this.src='http://www.zhcall.com/images/login03.gif'\" onMouseOut=\"this.src='http://www.zhcall.com/images/login02.gif'\"/> </li>"
   }
   else
   {
      str+="<li style=\"margin-top:6px; display:block;width:320px;\">你好,<span style=\"color:red\">"+un+"</span>欢迎登录中华通  <a href=\"http://www1.zhcall.com/personal/chgl_ck.asp\">&nbsp;&nbsp;个人帐户管理中心</a>&nbsp;&nbsp;&nbsp;<a href=\"http://www1.zhcall.com/personal/logout.asp\"><span style=\"color:red\">退出</span></a></li>"
   }
   
   jQuery(".deng ul form").prepend(str);
}



