I have an image map. Beside the image map are five text boxes. I want these five text boxes to populate with specific information depending on what part of the map you rollover. Therefore to populate all five boxes I need to have five onmouseover commands for each hotspot. How do I do this?
I tried:
<area shape=rect coords=293,472,328,483 href=# onMouseOver=window.document.form1.textfieldtemp.value='".$YVCtemp."'; onmouseout=window.document.form1.textfieldtemp.value=''; onMouseOver=window.document.form1.textfieldrh.value='".$YVCRH."'; onmouseout=window.document.form1.textfieldrh.value='';>
And it of course works for the first event, but not the second.