<!--
function openWin( winHeight, winWidth, picSrc ){
    newWin = window.open('', '', 'height='+ winHeight + ',width='+ winWidth + 'toolbars=no, scrollbars=yes' );
    newWin.document.write("<head><title>"+ picSrc +"</title></head>");
    newWin.document.write("<p align=center>");
    newWin.document.write("<img src=" + picSrc + ">");            newWin.document.write("<br><br><form><input type='button' value='Close' onclick='JavaScript:window.close()'>");
    newWin.document.write("</form></p>");
}
-->
