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

var url1 = "http://www.rayenelli.com";
var url2 = "http://www.hadenough.biz";
var url3 = "http://www.success101.biz";
var url4 = "http://www.ethingamajigs.com";
var url5 = "http://www.wyrn.net";
var url6 = "http://www.ccrg211.org";

var text1 = "Christian Living";
var text2 = "Revolt with your Vote";
var text3 = "FREE Success Course";
var text4 = "Save up to 75%";
var text5 = "WYRN Internet Radio";
var text6 = "10 Commandments";


// 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 = "http://www.couponfile.net/banner" + sponsor + ".gif";
       window.setTimeout('rotate();',10000);
       }
     else          // If cursor on image, try to rotate later
       {
       window.setTimeout('rotate();',10000);
       }
     }
   }

// function to display text in the status bar about the current banner
function windowON()
    {
    window.status = eval('text' + sponsor);
    setTimeout("windowOFF()",10000);
    }

// function to clear the status bar message
function windowOFF()
    {
    window.status="";
    }
// End Hiding -->

