var popImg = null;

function openPopImg(picName, width, height)
 {
 closePopImg();
 myWidth = parseInt(width);
 myHeight = parseInt(height); 
 winfmt = "toolbar=no,scrollbars=no,resizable=yes,width=" + myWidth + ",height=" + myHeight;
 popImg = window.open( "", "popImg", winfmt );

 popImg.document.write("<HTML>");
 popImg.document.write("<HEAD>");
 popImg.document.write("<TITLE>Ron Stern Images</TITLE>");
 popImg.document.write("<HEAD>");
 popImg.document.write("<BODY style='margin: 0px; background-color: #000000;'>");
 popImg.document.write("<IMG src='" + picName + "'>");
 popImg.document.write("</BODY>");
 popImg.document.write("</HTML>");
 popImg.document.close();
 }

function closePopImg()
 {
 if ( navigator.appName != "Microsoft Internet Explorer" || parseInt(navigator.appVersion) >=4 )
  { if( popImg != null ) { if( !popImg.closed ) { popImg.close(); } } }
 }
