function pop( imgSrc )
{
    newWin = window.open('', '', 'height=380,width=450,scrollbars,resizable' );
    newWin.document.write("<html><head><link rel=stylesheet type=text/css href=styles.css></head>");
    newWin.document.write("<body><table width=100% border=0 cellpadding=5><tr><td align=center><p align=center>");
    newWin.document.write("<img src=" + imgSrc + ">");
    newWin.document.write("<br><br>Image displayed at 1/3 actual size.<br>");            
    newWin.document.write("<br><a href=# onclick=window.close();>close window</a>");
    newWin.document.write("</p></td></tr></table></body></html>");
}