HV is a complicated script, it's onload event(s) may be hard to spot in its code. Your best bet would be to remove this line from the Conveyor script:
Code:
window.onload=fillup
and replace it with this:
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;
}
If there is any easy way of getting these two to play well together, that would be it. If that doesn't work, just put the Conveyor on a separate page and have it show through onto the desired page via a borderless iframe.
Bookmarks