You have an onload conflict:
Code:
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"
onLoad="preloadImages();MM_preloadImages('images/part1_f2.gif','images/part1_f3.gif','images/home_28_f2.gif','images/home_28_f3.gif','images/supo1_f2.gif','images/supo1_f3.gif','images/home_32_f2.gif','images/home_32_f3.gif','images/home_33_f2.gif','images/home_33_f3.gif')">
and later:
Code:
window.onload=getcontent_height
There are various ways to resolve this. The one that leaps to mind is removing the second bit of code, and combining it into the first like so:
Code:
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"
onLoad="getcontent_height();preloadImages();MM_preloadImages('images/part1_f2.gif','images/part1_f3.gif','images/home_28_f2.gif','images/home_28_f3.gif','images/supo1_f2.gif','images/supo1_f3.gif','images/home_32_f2.gif','images/home_32_f3.gif','images/home_33_f2.gif','images/home_33_f3.gif')">
Bookmarks