With something like:
HTML Code:
<a href="../Home/home.html" onClick="showit(0);" style="text-decoration:none;"><span class="Menu1Title">Home</span></a>
If you add the return false:
HTML Code:
<a href="../Home/home.html" onClick="showit(0);return false;" style="text-decoration:none;"><span class="Menu1Title">Home</span></a>
The link will not fire. If you leave it the way it was in the first place, the link will fire but, the event may not. If you want both to fire, use return true:
HTML Code:
<a href="../Home/home.html" onClick="showit(0);return true;" style="text-decoration:none;"><span class="Menu1Title">Home</span></a>
As for your body onload issue, I can't see why that won't work off hand. I'll have to look the script over and may even need a link to your problem page to figure that one out.
Bookmarks