function Zoom(theImage,theTitle,x,y) {
	var x1 = x;
	var y1 = y;
	var newWindow = null;
	newWindow = window.open("","","width="+x1+",height="+y1+",scrollbars=no,resizable=yes");
	if (newWindow !=null) {
		newWindow.focus();
		var newimage = "<html><head><title>";
		newimage += "" +theTitle+ "</title></head>";
		newimage += "<body><form><div align='center'><img src='" +theImage+ " 'alt='" +theTitle+ "' style='border:#000000 solid 1px'><br><br>";
		newimage += "<input type='button' value='Close window' onClick='javascript:window.close()'></form></div>";
		newimage += "</body></html>";
		newWindow.document.write(newimage);
		newWindow.document.close();
	}
}
