It might be because you have this:
Code:
if (ie||document.getElementById||document.layers)
at the end of http://www.freewebs.com/gjoaquin/staticlogo.js. It is the beginning of a conditional statement but, since you have removed the rest of it to combine with your other '<body onload=' statements, FF could be ignoring the rest of the script. Try removing it and see what happens. If that fixes it, your body onload should be amended to this:
Code:
<body onload="fall();earthquake();if (ie||document.getElementById||document.layers) {beingwatermark();}">
Bookmarks