﻿<!-- Start -->
function openwin()
{window.open("http://www.yinggou.com/tct.aspx","www_yinggou_com","toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,width=837,height=615,left=0,top=0")}
function get_cookie(Name)
{var search = Name + "=";
var returnvalue = "";
if (document.cookie.length > 0){
offset = document.cookie.indexOf(search)
if (offset != -1) {
offset += search.length
end = document.cookie.indexOf(";", offset);
if (end == -1)
end = document.cookie.length;
returnvalue="unescape(document.cookie.substring(offset,end))"
}
}
return returnvalue;
}　

window.onunload=function()
{
if (get_cookie("popped")=="")
{
openwin();
document.cookie="popped=yes";
}
}
<!-- End -->