A simple script that allows you to launch popup window on mouseover and close on mouseout.Cool script to open an image
TRy rhis example-
<script language="JavaScript">
/*
Pop Up New Window
Author: Narayan Chand Thakur
Source: http://ncthakur.itgo.com/
*/
<!--
function openWindow(url, name)
{
myWin = window.open("","nCt", "left=0,width=272,height=54,status=no,
toolbar=no,menubar=no,scrollbars=no");
myWin.document.write("<head><title>Example</title></head>");
myWin.document.write ("<BODY><img src=yourimage.gif>");
myWin.document.write ("</BODY></HTML>");
myWin.document.close()
}
function closeIt(){
if (!myWin.closed)
myWin.self.close()
}
//-->
</script>
<a href="javascript:void()"
onmouseover="openWindow()"
onmouseout="closeIt()"
onClick="return false"><b>EXAMPLE</b></a>
Let me know.