// check cookie., if not set - set, pop window, blur

function popUnder( id, url )
{
    if( getCookie( 'pop_' + id ) )
    {
        return;
    }

    setCookie( 'pop_'+id, '1', 20000, '/', '', '' );
        
    var win = window.open( url, 'offer', 'height=500,width=690,location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes' );
    win.blur(); 
    window.focus();
}       

function pop(URL,width,height) 
{
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width="+width+",height="+height+"');");
}

