// JavaScript Document

function ShowPic(p_path, p_width, p_height){
	sDesrc = "width=" + p_width + ", height=" + p_height +
  		", status=no, toolbar=no, menubar=no, scrollbars=yes";
	win=window.open('','Picture_Details', sDesrc);
	win.document.write("<html><style>body{padding:0px;margin:0px;}</style><body>");
	win.document.write("<img src='"+p_path+"' width='"+p_width+"' height='"+p_height+"'><br>");
	win.document.write("</body></html>");
	win.document.close();	
}
