There is a conflict in the use of the onmousedown event handler. And you still haven't removed the MM_preload thing. Get rid of it here:
Code:
<body background="images/newbackground.jpg" onLoad="MM_preloadImages('addresslabels.htm','images/CANWRAP2.jpg')">
Change this in the Image Thumbnail viewer:
Code:
document.onmousedown=initializedrag
to:
Code:
if ( typeof window.addEventListener != "undefined" )
document.addEventListener( "mousedown", initializedrag, false );
else if ( typeof window.attachEvent != "undefined" )
document.attachEvent( "onmousedown", initializedrag );
else {
if ( document.onmousedown != null ) {
var oldOnmousedown = document.onmousedown;
document.onmousedown = function ( e ) {
oldOnmousedown( e );
initializedrag();
};
}
else
document.onmousedown = initializedrag;
}
There could be other problems (in fact there are other errors reported) but, that made a local copy of the page work with the menu script.
Bookmarks