// roating, linked banner images
adImages = new Array("promos/images/FH_web_banner.jpg","promos/images/HSI_web_banner.jpg","promos/images/652_YELM_VIDEO_BANNER_FINAL.jpg","promos/images/Seasonal_1.jpg","promos/images/Seasonal_2.jpg");
adURL = new Array("javascript:newWindowCybersitter('promos/FH.pdf')","javascript:newWindowCybersitter('promos/HSI.pdf');","javascript:newWindowCybersitter('promos/652_YELM_VIDEO_inserts_FINAL.pdf');", "", "")
thisAd = 0
imgCt = adImages.length
function rotate() {
	if (document.images) {
		if (document.adBanner.complete){
		thisAd++
			if (thisAd == imgCt) {
			thisAd = 0 }
		document.adBanner.src=adImages[thisAd] }
	setTimeout("rotate()",2 * 5000) }
}

function newLocation(){
if (adURL[thisAd] != "") {
  document.location.href = adURL[thisAd]
  }
}

// open new windows
function newWindowDialup(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=581,height=600");
}

// open new windows
function newWindowDSL(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=600,height=375");
}

function newWindowNL(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=auto,resizable=no,width=585,height=642");
}

function newWindowCybersitter(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=745,height=400"); }

// Change image randomly onload
function ShowImg() {
var number = 2;
var increment = Math.floor(Math.random() * number);
if (increment == 0) { document.getElementById("adBanner").style.backgroundImage = "url('promos/images/no_limits_banner.jpg')";
	document.getElementById("adBannerLink").document.location.href = "promos/our_gift_to_you.html"; }
if (increment == 1) { document.getElementById("adBanner").style.backgroundImage = "url('promos/images/our_gift_banner.jpg')"; }
}