<html>
<head>
<meta name="http://www.netston.com" content="Stan's Scripts">
<title>Rollover Effect Demo</title>

<script language="javascript">  
<!-- 
image1on  = new Image(); image1on.src  = "Images\\button_netston_on.gif";
image1off = new Image(); image1off.src = "Images\\button_netston_off.gif";

function imgAct  (x) {document[x].src = eval(x + "off.src");}

function imgInact(x) {document[x].src = eval(x + "on.src") ;}
-->
</script>

</head>

<body>
<img name=       "image1" 
     src=        "Images\button_netston_on.gif"  
     border=     "2"
     onmouseover="imgAct  ('image1')" 
     onmouseout= "imgInact('image1')">
</body>

</html-->