It appears that in your source, you call the script the with the wrong arguments.
This is how you call it:
Code:
<area shape="rect" coords="191,394,211,416" href="javascript:;" onMouseover="ddrivetip('Family Center 289, 44 Dodge Ave, Stratford, CT. 06615','yellow', 300)"; onMouseout="hideddrivetip()"/>
When it should actually be something like this:
Code:
<area shape="rect" coords="191,394,211,416" href="javascript:;" onMouseover="ddrivetip('Family Center 289, 44 Dodge Ave, Stratford, CT. 06615', 300, 'yellow');" onMouseout="hideddrivetip();">
The ddrivetip function is like this:
Code:
function ddrivetip(thetext, thewidth, thecolor)
so when you were calling it before, "thewidth" was being assigned as yellow and "thecolor" was being assigned as 300, instead of the other way around.
Anyways, hope this helps.
Bookmarks