howdy
strange behavior w/ ns6 going on here.

onMouseover calls a function that swaps an image
onMouseout does the same thing but the image 'dissapears' instead of swaping.
the strange thing is if I put an alert box in the onMouseout function, i don't get the strange behavior.

here is a sample of the code
___________________________________
{d.writeln('<div id="NorthLayer" onMouseOut="OutImage(\'North\');hideMenu(\'NorthLayer\');" onMouseOver="showMenu(\'NorthLayer\');OverImage(\'North\');">');}
___________________________________

the OutImage() function

_______________________________________
function OutImage(pic) {
//onMouseOut release button
if (document.images && (preloadFlag == true))
{ //check for images
//alert("mouse out image");
document.images[pic].src = eval(pic + "_out.src"); //swap current "over" image for "out" image
}
}
________________________________________________________

i've never seen this before. this is in NS6 , in IE5 it works fine.

let me know if you need more info.

anyone???

thanks