
function showImage(file, w, h)
	{		
     	 w += 20;
      	 h += 20;
		 contents = "<HTML>\n";
		 contents += "<HEAD>\n";
		 contents += "<TITLE>Image</TITLE>\n";
		 contents += "</HEAD>\n";
		 contents += "<BODY>\n";		 
         contents += "<IMG SRC='" + file + "'>\n";
		 contents += "</BODY>\n";
		 contents += "<HTML>\n";		 
     	 options = "toolbar=0,status=0,menubar=0,scrollbars=1," +
               	   "resizable=1,width="+w+",height="+h;

      	 newwindow=window.open("","mywindow", options);
     	 newwindow.document.write(contents);
     	 newwindow.document.close();		 
    }
