English
<!-- Add the following code to BODY --> <body> <script> var cookieString = new String(document.cookie) var cookieHeader = 'happy_pop' //Replace happy_pop with any name var beginPosition = cookieString.indexOf( cookieHeader) if (beginPosition <0){ window.open('http://www.downcodes.com/index.html','','top=0,left=0,width=787,height=480,toolbar =yes,menubar=yes,scrollbars=yes,resizable=yes,location=yes,status=yes'); var Then = new Date() Then .setTime(Then.getTime() + 12*60*60*1000 ) //Set the expiration time for the same IP, that is, how long does it take to pop up document.cookie = 'happy_pop=yes;expires='+ Then.toGMTString() //Replace happy_pop with the same name as line 4}//more javascript from http ://www.downcodes.com </script> </body>