Now you have:
Error: unterminated string literal
Source File: http://www.freewebs.com/wizardsrealm/nav.html
Line: 49, Column: 15
Source Code:
document.write('<div id="dropmenudiv"
The fix for this is just a little more complicated, it is actually written correctly except that the lines in the code are broken up:
Code:
document.write('<div id="dropmenudiv"
style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'"
onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')
should be:
Code:
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')
Once again, there could be other things, gotta fix this first to tell. BTW do you have Firefox or NS7.2? With either one of those browsers you could use the javascript console to debug this, just as I have been doing.
Bookmarks