 <script language=javascript>  
<!-- Hide code from older browsers  
  
var sponsor = 1;  // global variable for current sponsor (Don't change this!)    
var go = 1;       // tells the banner if to rotate    
  
var max = 3;     // number of banners    
  
var url1 = "http://www.masterasap.com";    
var url2 = "http://www.shop4all.com";    
var url3 = "http://wso.net/danone/index.htm";    
  
var text1 = "Visit The Best Online Training .";  
var text2 = "Shop @ http://www.shop4all.com";  
var text3 = "The Appliance Home Page.  Purchasing, Service and Repair Parts Information.";  
  
// function to link to appropriate sponsor    
function GoSponsor()  
   {  
   location = eval("url" + sponsor);  
   }  
  
// function to rotate image    
function rotate()  
   {  
   if (document.images)   // Only if the image object exists so no errors occur with IE 3.0    
     {  
     if (go)        // If cursor not on image    
       {  
       if (++sponsor > max) sponsor = 1;  
       document.images['pic'].src = "banner" + sponsor + ".gif";  
       window.setTimeout('rotate();',5000);  
       }  
     else          // If cursor on image, try to rotate later    
       {  
       window.setTimeout('rotate();',100);  
       }  
     }  
   }  
  
// function to display text in the status bar about the current banner    
function windowON()  
    {  
    window.status = eval('text' + sponsor);  
    setTimeout("windowOFF()",2000);  
    }  
  
// function to clear the status bar message    
function windowOFF()  
    {  
    window.status="";  
    }  
// End Hiding -->    
</script>    
<body onload="window.setTimeout('rotate();',2000);"> 
<!-- Banner Image Start (Note the image name)-->  
<a href="javascript:GoSponsor();" onmouseout=go=1;   
onmouseover="go=0;windowON();return true"> 
<img border=0 height=60 name="pic" src="banner1.gif" width=468></a><!-- Banner Image End -->  
</div>  