	<!-- Comment for Incompatible Browsers...

	// Johnny Cison

	function ViewImage(ImageName, NewHeight)
	{
		var WinHeight=NewHeight+21;
		var imagewin = window.open("view.cgi?i="+ImageName+"&h="+NewHeight, "_blank", "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=500,height="+WinHeight);

		if ((screen.width > 500) && (screen.height > WinHeight))
		{	imagewin.moveTo( (screen.width - 500)/2, (screen.height - WinHeight)/2 );	}

		imagewin.focus();
	}

	// End Incompatibility Comment -->

