Get rid of this from your body tag:
Code:
onload="dothat();Go(){return}"
And replace this (in the conveyor script):
Code:
window.onload=fillup
with:
Code:
if ( typeof window.addEventListener != "undefined" )
window.addEventListener( "load", fillup, false );
else if ( typeof window.attachEvent != "undefined" )
window.attachEvent( "onload", fillup );
else {
if ( window.onload != null ) {
var oldOnload = window.onload;
window.onload = function ( e ) {
oldOnload( e );
fillup();
};
}
else
window.onload = fillup;
}
That will at least get those two scripts on that page working. There could also be other problems.
Bookmarks