<!-- ONMOUSEOVER POP-UP --> <!-- This goes in the HEAD of the main html file --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2005, Sandeep Gangadharan --> <!-- For more free scripts go to http://sivamdesign.com/scripts/ --> <!-- function opener() { SW=window.open('popup.html','NewWin','toolbar=no,status=no,width=350,height=135,scrollbars') SW.moveTo(190,240); //change the numbers at the left to adjust the top and left margins of //the new window } // --> </script> <!-- This goes in the BODY of the html file --> <body> <a href="#" onmouseover="opener()">Hover</a><br /><br /> <!-- Note: there is no script to be included in the pop-up window named 'popup.html' in this example. In the example above the link does not open any page. But if users want to they can have the link open any page. For that just replace '#' above with the path to the page. Also note that the popup can be opened even without a link like in the example below. --> <span onmouseover="opener()">Hover</span>