<!-- 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 = 2;     // number of banners

var url1 = "http://www.ibm.com";
var url2 = "http://macromedia.com";

var text1 = "IBM";
var text2 = "Macromedia";

// 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 = "/images/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 -->

