// JavaScript Document

	<!-- Hide script from old browsers

	function newWindow(winName,parms) {
		thisWindow = window.open(winName,"thisWin", parms)
		thisWindow.focus()
	}
	
	
	
var SBObjectPopup = null; // global variable

function openFormPopup(htmlForm,parms)
{
    SBObjectPopup = window.open(htmlForm,"WinForm", parms);
    /* then create it. The new window will be created and
       will be brought on top of any other window. */
    SBObjectPopup.focus();
    /* we can bring it on top of any other
       window with the focus() method.  */
}


	// End hiding script from old browsers -->
	<!-- Hide script from old browsers

	adImages = new Array("assets/images/indepndntins1.gif","assets/images/trusted_choice.gif")
	adURL = new Array("iiaba.html","trustedchoice.html")
	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()", 3 * 1000)
	  	}
	}
	
	function newLocation() {
//		document.location.href = "http://www." + adURL[thisAd]
		newWindow(adURL[thisAd],'width=640,height=640,location=no,resizable=yes,scrollbars=yes,status=yes');
	}

	// End hiding script from old browsers -->
