function displayImage(imgURL, imgTitle, imgWidth, imgHeight) {
	imgWindow = window.open("", "preview", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0,width=" + imgWidth + ",height=" + imgHeight);
	imgWindow.document.open();
	imgWindow.document.write("<html><head>");
	imgWindow.document.write("<title>" + imgTitle + "</title>");
	imgWindow.document.write("</head><body leftmargin='0' topmargin='0' bgcolor=#cad5aa>");
	imgWindow.document.write("<table cellspacing='0' cellpadding='0' border='0' width='100%' height='100%'><tr><td align='center' valign='middle'>");
	imgWindow.document.write("<a href='' onClick='window.close()'><img border='0' hspace=0 vspace=0 " + "src='" + imgURL + "'></a>");
	imgWindow.document.write("</td></tr><tr><td align='center' valign='middle'>");
	imgWindow.document.write("<a href='' onClick='window.close()' style='color:black; font-family: Georgia, Times New Roman, Times, serif; font-size:11pt; font-weight:normal; text-decoration:none;'>click on image to close window</a>");	
	imgWindow.document.write("</td></tr></table>");
	imgWindow.document.write("</body></html>");
	imgWindow.document.close();
//	imgWindow.resizeTo(imgWidth, imgHeight);
	imgWindow.focus();
}