seven
Senior Member
USA
1037 Posts |
Posted - 18 February 2002 : 17:42:02
|
Here's an easy way to center all those popup windows on your screen:
Just insert this script on each page that pops up and set the correct width and height. Set to 400 and 250 below...
<script language="JavaScript"> windowWidth=400; windowHeight=250; if (parseInt(navigator.appVersion) >= 4) window.moveTo((screen.width/2)-(windowWidth/2+10),(screen.height/2)-(windowHeight/2+20)); </script>
// What's a Snitz? // |
|