ptWindowName = "ptPopUnderOpen"; ptOpenedWindow = false; function setCookie(cookieName,cookieValue,nDays) { var today = new Date(); var expire = new Date(); if (nDays==null || nDays==0) nDays=1; expire.setTime(today.getTime() + 3600000*24*nDays); document.cookie = cookieName+"="+escape(cookieValue) + ";expires="+expire.toGMTString(); } // this function gets the cookie, if it exists // don't use this, it's weak and does not handle some cases // correctly, this is just to maintain legacy information function getCookie( name ) { var start = document.cookie.indexOf( name + "=" ); var len = start + name.length + 1; if ( ( !start ) && ( name != document.cookie.substring( 0, name.length ) ) ) { return null; } if ( start == -1 ) return null; var end = document.cookie.indexOf( ";", len ); if ( end == -1 ) end = document.cookie.length; return unescape( document.cookie.substring( len, end ) ); } function openBeatThatQuote() { if( ptOpenedWindow ) return; else ptOpenedWindow = true; var windowOpen = typeof wdwBeatThatQuote != 'undefined'; var cookieSet = getCookie(ptWindowName) != null; if(!windowOpen && !cookieSet) { var wdwBeatThatQuote = ''; wdwBeatThatQuote = window.open('http://priceterrier.beatthatquote.com/money_landing.php/', 'popunder', "location=1,status=0,scrollbars=1,resizable=1,width=800,height=600"); if(wdwBeatThatQuote != null) { wdwBeatThatQuote.blur(); setCookie( ptWindowName , "set" , 1 ); this.focus(); } } }