<!-- DELAYED POP-UP --> <!-- This goes in the HEAD of the html file that that opens the pop-up --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2005, Sandeep Gangadharan --> <!-- For more free scripts go to http://sivamdesign.com/scripts/ --> <!-- function openPopup() { SW=window.open('popup.html','NewWin','toolbar=no,status=no,width=350,height=135') // change the name/path of the pop-up at left SW.moveTo(190,240); // change the #s at the left to adjust the place the popup should open } // --> </script> </head> <!-- This is the script to be included in the BODY tag of the html file that opens the popup --> <body onLoad="setTimeout('openPopup()', 5000);"> <!-- The number 5000 above in the BODY tag represents 5 seconds. It can be changed to suit your needs. For example if you wish to open the popup after 10 seconds, change the number 5000 to 10000. -->