	<!-- Hide script from older browsers
	setTimeout ("changePage()", 3000);

	function changePage() {
		if (self.parent.frames.length != 0)
			self.parent.location=document.location;
		}
		
	function openVerticalImageWin (URL, windowName) {
		window.open(URL, windowName, "scrollbars=yes,resizable=yes,width=300,height=500");
	}
	
	function openHorizontalImageWin (URL, windowName) {
		window.open(URL, windowName, "scrollbars=yes,resizable=yes,width=500,height=300");
	}
	
	function openWin (URL, windowName, winWidth, winHeight) {
		winString = "scrollbars=yes, resizable=yes, width=" + winWidth + ",height=" + winHeight;
		window.open(URL, windowName, winString);
	}
	
	function windowReSize () {
		winWidth = document.images[0].width;
		winHeight = document.images[0].height;
		window.resizeTo(winWidth+55, winHeight+175)
		//alert (winWidth + '\n' + winHeight);
		
	}
	
	// end hiding contents -->



