The following works just fine in both IE and NS:
<A href="#"
onMouseOver=" document.circles.src=nav2.src"
<IMG border=0 class=nav height=79 name=circles src="images/nav1.gif" width=80>
</A>
BUT when I try to use a function it only works in IE:
function navigate() {
document.circles.src=nav2.src;
}
<A href="#"
onMouseOver=" navigate()"
<IMG border=0 class=nav height=79 name=circles src="images/nav1.gif" width=80>
</A>
What’s wrong?
Bob Levien