<!-- Banner Rotation Begin -------------------------------------------------------------------->

adImages = new Array("http://www.srproductiononline.com/SR Ads/fwmbanner1.gif",
		     "http://www.srproductiononline.com/SR Ads/fwsbanner4.gif")

adURL = new Array ("www.freewebmonitoring.com",
                   "www.freewebsubmission.com")

thisAd = 0
imgCt = adImages.length

function rotate() 
{
    thisAd++
    if (thisAd == imgCt) 
    { 
        thisAd = 0;
    }	
document.cycle.src = adImages[thisAd];
setTimeout("rotate()", 3500)     
}

function rotateLink() 
{ 
window.parent.location.href = "http://" + adURL[thisAd]
}

<!-- Banner Rotation End ---------------------------------------------------------------------->





<!-- Random Banner Select Begin --------------------------------------------------------------->

var how_many_ads = 2;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;

if (ad==1) {
txt="FreeWebMonitoring, www.freewebmonitoring.com";
url="http://www.freewebmonitoring.com";
banner="http://www.srproductiononline.com/SR Ads/fwmbanner1.gif";
}

if (ad==2) {
txt="FreeWebSubmission, www.freewebsubmission.com";
url="http://www.freewebsubmission.com";
banner="http://www.srproductiononline.com/SR Ads/fwsbanner4.gif";
}

<!-- Random Banner Select End ----------------------------------------------------------------->