if you didn't fix it, it may be because you don't have a name for the
window?

window.open(url,name,etc..)?  just a guess...

On 3/8/07, Steve LaBadie wrote:
>
> I hope it's ok to post this here.
>
>
>
> I have created an onmouseover pop-up window, which closes with
> onmouseout.  Works fine in IE6, but creates multiple windows in Firefox.
> Any ideas?
>
>
>
> <script language="JavaScript" type="text/javascript">
>
> <!--
>
> function openWindow(url, name) {
>
> myWin = window.open("","", "width=300,height=250");
>
> myWin.document.write ("<body>texttexttext");
>
> 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">Ronald Louis</a>
>


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272281
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to