function view( imgpath ) {
  prewin=window.open("", "viewImage", "resizable=yes, titlebar=no, scrollbars=auto, height=600, width=600");
  prewin.document.write('<body bgcolor="#505050" onload="self.focus();">'); 
  prewin.document.write('<div align="center">');
  prewin.document.write('<img src="'+imgpath+'">');
  prewin.document.write('<h4><a href="javascript:self.close()" style="color:#00ffff;font-weight:900;text-decoration:none;margin:0;">[ close ]</a></h4></div>');
  prewin.document.title="Rich Howard, Photography -- Image Viewer";
  prewin.document.close();
}
