﻿// JScript 文件



function jb()
           {
              var A=null; 
                 try 
                 { 
                     A=new ActiveXObject("Msxml2.XMLHTTP"); 
                  } 
              catch(e)
              { 
                    try 
                     { 
                        A=new ActiveXObject("Microsoft.XMLHTTP"); 
                     }
               catch(oc)
              { 
                       A=null 
                     } 
                } 
             if ( !A && typeof XMLHttpRequest != "undefined" ) 
              { 
                 A=new XMLHttpRequest() 
               } 
             return A 
           }
           function UnloadLogin()
           {
            var weburl = "/unLoadLogin.ashx";
            window.location=weburl; 
//              var weburl = "/unLoadLogin.ashx";
//            
//              var xmlhttp = jb();
//            
//              xmlhttp.open("get",weburl,true);
//              xmlhttp.onreadystatechange=function()
//              {
//                if(xmlhttp.readyState==4)
//                 {
//                    var result = xmlhttp.responseText;
//                  
////                    if(result!="")
////                    {
////                        document.write(result);  
////                    }
//                     window.location.href='http://ts.todaysteel.com';
//                 }
//              }
//              xmlhttp.send(null);
        }



