<!--

// ImageViewer v3.0 - Copyright (c) 1999-2003 Ville Tikkaoja
//
// viewImage() is a small JavaScript function written for viewing
// Racing Images photos in a different browser window.

function viewImage(imgID) {
	if (imgID != null) {
		var height = screen.height - 30;
		var width = screen.width;
		if (width > 800) { width = 860; }
		if (height > 600) { height = 700; }
		var imageViewer = window.open("view.php?id="+imgID,"Image_Viewer","top=0,left=0,height="+height+",width="+width+",resizable,scrollbars");
		imageViewer.focus();
	}
}

//-->
