Hi there,
The problem is that I can not get the image hidden when I use "onMouseout "event...!!
All I want is that I want imege to be seen when "onmouseover" the link and be hidden when onMouseout
could you please help
thanks in advance..
-------------------------------------------

<body>
<script>
function show()
{
document.getElementById("res").innerHTML="<img src=sabit14.jpg width=100 height=130 style=visibility:visible;>";
}

function clear()
{
document.getElementById("res").innerHTML="";
}
</script>
get your mouse<a href ="#" id=res onMouseover="show()";onMouseout="clear()"> here</a> to see my image..<br>
</body>