<HTML>
     <HEAD>
      <TITLE>Mouseover Test 1a</TITLE>
<script language="JavaScript">
<!--
browsok = (((navigator.appName == "Netscape")
&& (parseInt(navigator.appVersion) >= 3))
|| ((navigator.appName == "Microsoft Internet Explorer")
&& (parseInt(navigator.appVersion)>=3)));
if(browsok){
  // MouseOn   
  // Note: the 88 is for the WIDTH, 25 is for the HEIGHT
     login1 = new Image(88, 25);
     login1.src = "LOGONB.GIF";
     join1 = new Image(88, 25);
     join1.src = "JOINB.GIF";
     

  // MouseOff
  // Note: the 88 is for the WIDTH, 25 is for the HEIGHT
     login0 = new Image(88, 25);
     login0.src = "LOGON.GIF";
     join0 = new Image(88, 25);
     join0.src = "JOIN.GIF";
     

}
function BNB_mouseon(n){
     if(browsok){
          imageON = eval(n + "1.src");
          document [n].src = imageON;
          }
}
function BNB_mouseoff(n){
     if(browsok){
imageOFF = eval(n + "0.src");
     document [n].src = imageOFF;
          }
}
// -->
</SCRIPT>

     </HEAD>
   <BODY>
This is an example of the mouseover with image change effect.
Just pass your mouse cursor over the images above and watch the effect created by the Java script.

 </BODY>

</HTML>