













































































































<!--
function SetCookie(name, value, expires, path) 
{ 
    document.cookie = name + "=" + escape(value) + 
        ((expires == null) ? "" : "; expires=" + expires.toGMTString()) +
        ((path == null)    ? "" : "; path=" + path);
}
function GetCookie(name)
{ 
    var cname = name + "=";               
    var dc = document.cookie;             
    if (dc.length > 0) 
    { 
        begin = dc.indexOf(cname);       
        if (begin != -1) 
        { 
            begin += cname.length;       
            end = dc.indexOf(";", begin);
            if (end == -1) end = dc.length;
            return unescape(dc.substring(begin, end));
        } 
    }
    return null;
}
var sCookie = GetCookie("IsPoped0");
if (sCookie != null)
{
    //window.alert(sCookie);
}
else
{
    SetCookie("IsPoped0","1",null,"/")
    //window.alert("Cookie has been setted!");
window.open('http://www.sh96964.com.cn',null,'');
}
//-->