<!-- HIDDEN POP-UP --> <!-- This goes in the HEAD of the html file that would contain the link to the pop-up --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2002, Sandeep Gangadharan --> <!-- For more free scripts go to http://sivamdesign.com/scripts/ --> <!-- function hide() { window.open('hidden.html','NewWin','toolbar=no,status=no,width=350,height=135') } // --> </script> </head> <!-- This goes into the body of the file --> <a href="javascript:hide();">Click</a> to open a small hidden window. <!-- Instead of having a link open the window as shown above, the pop-up window can be made to open by itself by adding the script below to the BODY tag of the file. --> <body onLoad="hide();"> <!-- ======================================================================================= --> <!-- Create a html document (in this example "hidden.html") --> <!-- Add the script below to the BODY tag of the file --> <body onLoad="window.blur();"> <!-- ======================================================================================= -->