// ==================================== // Copyright 2001 by www.CodeLifter.com // Do *not* remove this notice. // ==================================== // Set the url of the banner popup window page var theURL = "http://www.promoland.de/php/pop/popup.php?id=586"; var title = "Promoland.de" var windowWidth = 1000; // cannot be less than 100 var windowHeight = 700; // cannot be less than 100 var windowX = 0; var windowY = 0; var autocenter = true; var autoclose = false; var s="width="+windowWidth+",height="+windowHeight; var beIE=document.all?true:false; var done=new Object("no"); if(autocenter){ windowX = (window.screen.width-windowWidth)/2; windowY = (window.screen.height-windowHeight)/2; } function doAgilePopup(){ if (beIE){ agilePopper = window.open("","popAgile","fullscreen,locationbar=yes,resizable=yes,status=yes"); agilePopper.blur(); var frameString=""+ ""+ ""+ ""+title+""+ ""+ ""+ ""+ ""+ ""+ "" agilePopper.document.open(); agilePopper.document.write(frameString); agilePopper.document.close(); }else{ agilePopper=window.open(theURL,"popAgile","scrollbars=no,fullscreen,locationbar=yes,resizable=yes,status=yes"); agilePopper.blur(); } agilePopper.blur(); if (autoclose){ window.onunload = function(){agilePopper.close();} } done="okay"; } onload = doAgilePopup();