function showpic(param,name, caption){ 
windowLeaving=window.open("","popup","scrollbars=no,toolbar=no,location=no,directories=no,status=no,width=640,height=480"); 
windowLeaving.document.open(); 
windowLeaving.document.writeln("<html><head><title>"+name+"</title>"); 
      windowLeaving.document.writeln("<script language=javascript>"); 
      windowLeaving.document.writeln("function init(){"); 
      windowLeaving.document.writeln("var width = pic.width+120;"); 
      windowLeaving.document.writeln("var height = pic.height + 120;");
      windowLeaving.document.writeln("resizeTo(width,height);"); 
      windowLeaving.document.writeln("}"); 
      windowLeaving.document.writeln("</script>"); 
      windowLeaving.document.writeln("</head>"); 
      windowLeaving.document.writeln("<body onload='init();' onblur='self.close();' bgcolor='white' text='black'>"); 
      windowLeaving.document.writeln("<center>"); 
      windowLeaving.document.writeln("<img src='"+param+"' border=0 id=pic>"); 
      windowLeaving.document.writeln("</center>"); 
      windowLeaving.document.writeln("<p style=\"margin: 20px;\">"+caption+"</p>"); 
      windowLeaving.document.writeln("</body></html>"); 
      windowLeaving.document.close(); 
   } 

