function ViewPOW(PicTitle,Image,pWidth,pHeight) {
  var generator=window.open('','name','height=' + pHeight + ',width=' + pWidth + ',scrollbars=no');

  generator.document.write('<html><head><title>' + PicTitle + '</title>');
  generator.document.write('</head><body>');
  generator.document.write('<img src="' + Image + '"  width="' + pWidth + '" height="' + pHeight + '" align="left" valign="top">');
  generator.document.write('</body></html>');
}