There may be other problems but, for starters you must have only one <body> tag on your page unless you are doing something unconventional for which there is no substitute. This is not such a case. Second, you have another script on the page with an onload handler. The fact that this second script is running means it has captured the onload handler from the bookflip script, preventing it from running. This can all be resolved like so (mind you there could be other problems but we will not know until these are fixed):
1) Remove this line from the 'slider' script:
Code:
window.onload=fillup
2) Replace your three <body> tags:
Code:
<body>
<body onload="ImageBook()">
<body bgcolor="#FFFFCC">
with this one tag:
Code:
<body bgcolor="#FFFFCC" onload="ImageBook();fillup();">
See if that doesn't get things working. If not, as I say, there are other problems.
BTW, isn't that 'slider' script from Dynamic Drive? I recognize its 'fillup' handler. If so, you haven't left its credit intact, a violation of Dynamic Drive's usage agreement.
Bookmarks