I have encountered a problem with ff not showing/using my imagemap. It works perfectly in IE, but blinks once for FF and then does not come back. What the script below does is a mouseover image switch and the new image is the map. You can see the difference in IE/FF. I have it on the web at The area is the top right. If anyone know why this happens or how I can correct it, it would be much appriceated. Thanks in advance.
<script type="text/javascript">
<!--
function openmenu(){document.menu.src='images/contestsopen.GIF';
document.menu.useMap="#contestsopen";}
//-->
</script>
<map id="contestsopen" name="contestsopen">
<area shape="rect" coords="24,26,92,41" href="videocontest.htm" title="" target="rside" />
<area shape="default" nohref="nohref" alt="" />
</map>
<span onMouseOver=openmenu()
onMouseOut="document.menu.src='images/contests.GIF'">
<img border="0" src="images/contests.GIF" width="100" name="menu">
</span>
<script type="text/javascript">
<!--
function openmenu(){document.menu.src='images/contestsopen.GIF';
document.menu.useMap="#contestsopen";}
//-->
</script>
<map id="contestsopen" name="contestsopen">
<area shape="rect" coords="24,26,92,41" href="videocontest.htm" title="" target="rside" />
<area shape="default" nohref="nohref" alt="" />
</map>
<span onMouseOver=openmenu()
onMouseOut="document.menu.src='images/contests.GIF'">
<img border="0" src="images/contests.GIF" width="100" name="menu">
</span>