	function GoImage(which)
	{	var newwin2 = window.open(which.src.replace("thumbnails", "images"),"MYIMAGE","height=530,width=695,status=no,toolbar=no,menubar=no,location=no");
		if(newwin2)
			{
			var cw = (screen.width - 695) / 2
			var ch = (screen.height - 530) / 2
			newwin2.moveTo(cw,ch);
			}
		else
			{
				alert('The POP UP was blocked. Please turn off your pop up blocker.')
			}
		
	}
