function popWindow(imageFile, imageWidth, imageHeight, imageTitle) {
	popupWindow = window.close
	 // if (!popupWindow || popupWindow.closed) {
	popupWindow = window.open("", "Popup", "resizable=yes,width="+imageWidth+",height="+imageHeight, false);
	// }
	popupWindow.document.open();
	popupWindow.document.writeln("<html><title>"+imageTitle+"</title><body MARGINHEIGHT=0 MARGINWIDTH=0 LEFTMARGIN=0 TOPMARGIN=0 onBlur='self.close()'>");
	popupWindow.document.writeln("<img src='"+imageFile+ "'>");
	popupWindow.document.writeln("</body></html>");
	popupWindow.document.close();
	popupWindow.focus();

}

