function showGamelistPop() { var width = 700; var height = 600; var cenH = ((screen.availHeight/2) - (height/2)); var cenW = ((screen.availWidth/2) - (width/2)); var cookName = 'gamelistpop'; var date = new Date(); date.setTime(date.getTime()+(1*24*60*60*1000)); // 1/24 cookie if (getCookie(cookName) != '1') { w = open("http://www.smallarcade.com/gamelist-pop.html", "Sample", "scrollbars=1,resizable=1,menubar=1,location=1,top=" + cenH + ",left=" + cenW + ",width=" + width + ",height=" + height); w.blur(); window.focus(); setCookie(cookName, "1", date, "/", "", ""); } } // attached the click listener if(document.addEventListener ) document.addEventListener('click', showGamelistPop, false); else if( document.attachEvent ) document.attachEvent('onclick', showGamelistPop); else document.onclick = showGamelistPop;