// roating, linked banner images

adImages = new Array("promos/images/FH_web_banner.jpg", "promos/images/HSI_web_banner.jpg")
 adURL = new Array("javascript:newWindow3('promos/FH.pdf');", "javascript:newWindow3('promos/HSI.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()",4 * 5000) }
}

function newLocation(){
document.location.href = adURL[thisAd]
}

function newWindowDSL(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=600,height=385");
}

function newWindowNL(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=auto,resizable=no,width=585,height=623");
}

function newWindow3(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=745,height=400"); }