function Popup(site) {

var exp = 8760;
var page = "/distiller-water/american-water-distillers/water/distill.html";
var windowprops = "width=475,height=300,location=no,toolbar=no,menubar=no,scrollbars=no";
var temp = new Cookie(document, "wad", exp);

//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, "", windowprops);
    }
}

