function Popup(site) {

var exp = 8760;
var page = "/freebonusgift.aspx";
var windowprops = "width=800,height=400,location=no,toolbar=no,menubar=no,scrollbars=no";
var temp = new Cookie(document, "pop1", exp);
var subwin;

//check cookie and see if it is the first time that page has been popped up
    //if (!temp.load()) {
        temp.firstload = site;
        temp.store();
        subwin=window.open(page, "BonusGift", windowprops);
    //}
}

