As near as I can tell:
Your page is in violation of Dynamic Drive's
usage terms, which, among other things, state that the script credit must appear in the source code of the
page(s) using the script. Please reinstate the notice first.
As a result, I can't see where on the page that either script is. But I was able to determine that they both were associated with the page somehow, and to find the problem. But I don't even know what filenames you are using for these scripts. So I'll just refer to the one where change would be most beneficial by its descriptive title, "Cool DHTML Tooltip II". In that script there is (at the end):
Code:
document.onmousemove=positiontip
Change that to:
Code:
if (document.addEventListener)
document.addEventListener('mousemove', positiontip, false);
else if (document.attachEvent)
document.attachEvent('onmousemove', positiontip);
That should do it!
Bookmarks