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><link href='styles.css' rel='stylesheet' type='text/css'></head>";
		newimage += "<body><form><div id='popup'><img src='" +theImage+ " 'alt='" +theTitle+ "'><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();
	}
}