You've allowed comments to hide important information from the browser. Right here:
Code:
</script>
<SCRIPT LANGUAGE="JavaScript">
<!--
floatX=0
floatY=0
That little <!-- looks innocent enough but it tells the browser that all that follows is a comment. This would be fine if the comment was closed before the ending script tag but, it isn't. So, since these little tricks aren't really needed, just remove it so that it looks like this:
Code:
</script>
<SCRIPT LANGUAGE="JavaScript">
floatX=0
floatY=0
I did and your page worked fine.
Bookmarks