function showImage(image)

{

	imageObj = new Image();

	imageObj.src = image;

	

	newwin = window.open("", "", "innerHeight="+imageObj.height+"innerWidth="+imageObj.width+"toolbar=no, resizable=yes, scrollbars=yes");



	newwin.document.write("<html><head><title>Image View</title></head><body><table align=\"center\" border=\"1\" bgcolor=\"White\">");

	

	newwin.document.write("<tr><td><img src=\""  + image + "\"></td>");

	newwin.document.write("</table><br><br><div align=\"center\"><input type=\"button\" value=\"CLOSE\" onclick=\"window.close()\"></div></body></html>");

}
