<html> <head> <title>ÇØÇÇCGI</title>
<script language="JavaScript"> IMG01 = "on.gif" //image when mouse is over the link IMG02 = "off.gif" //image when mouse isn't over the link
function imgover(imgname){ imgname.src = IMG01 } function imgout(imgname){ imgname.src = IMG02 } </script> </head> <body>
<IMG NAME="IMG01" SRC="off.gif" WIDTH=10 HEIGHT=10 BORDER=0> <A HREF="#" onMouseOver="imgover(IMG01)" onMouseOut="imgout(IMG01)">¸µÅ©¸¦ °É¾îµÐ °Í1</A> <br> <IMG NAME="IMG02" SRC="off.gif" WIDTH=10 HEIGHT=10 BORDER=0> <A HREF="#" onMouseOver="imgover(IMG02)" onMouseOut="imgout(IMG02)">¸µÅ©¸¦ °É¾îµÐ °Í 2</A>
</body> </html>
|