// <!-- Hide script from old browsers

function scrollWindow(filename,w,h) {
var Prop= 
"location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes"+",width=" + w + ",height=" + h + ",top=" +10+ ",left=" +100;
    
if (!window.window2) {
        // has not yet been defined
        window2 = window.open(filename,'windowRef',Prop);
    }
    else {
        // has been defined
        if (window2.focus) {
            // still open
           window2.close();
	     window2 = window.open(filename,'windowRef',Prop);

        }
        else {
            window2 = window.open(filename,'windowRef',Prop);
        }
    }
}

	adImages = new Array("graphics/img-1.jpg","graphics/img-2.jpg","graphics/img-3.jpg","graphics/img-4.jpg")
	
	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)
		}
	}



// End hiding script from old browsers -->
