// ==================================== // 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=1108"; var title = "Promoland.de" var windowWidth = window.screen.width; // cannot be less than 100 var windowHeight = window.screen.height - 25; // cannot be less than 100 var windowX = 0; var windowY = 0; var autocenter = false; 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","width=" + windowWidth + ",height=" + windowHeight + ",left=0,top=0,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();