<!--
function ViewPhotos(url)
	{
	H = 325
	W = 355
	T = (screen.height) ? (screen.height-H)/2 : 0;
	L = (screen.width) ? (screen.width-W)/2 : 0;

	settings = 'height='+H+',width='+W+',top='+T+',left='+L+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no'
	newWindow = window.open(url,"ViewPhoto",settings)
	newWindow.focus();
	}
//-->
