﻿//For Entry popup Script
function EntryPopUp(page) {
    var windowprops = "width=320,height=270,location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes";
    if (document.cookie) {
        if (document.cookie.indexOf("FRH=entry_pop_up") < 0) {
            var today = new Date();
            var expire = new Date();
            expire.setTime(today.getTime() + 3600000 * 24 * 1);
            document.cookie = "FRH=entry_pop_up;domain=freshhomeideas.com;expires=" + expire.toGMTString() + "; path=/";
            win = window.open(page, "pop", windowprops);
            win.blur();
        }
    }

}


