<!--
function openWin (winHeight, winWidth, picSrc ) {
   newWin = window.open ('', '', 'height=' + winHeight + ', width=' + winWidth + 'toolbar=no, titlebar=no, scrollbars=no' );
   newWin.document.write ("<HEAD><TITLE>" + picSrc + "</TITLE></HEAD>");
   newWin.document.write ("<P align='center'>");
   newWin.document.write ("<IMG src=" + picSrc + ">");
   newWin.document.write ("<BR><FORM><CENTER><INPUT type='button' value='Close' onclick='JavaScript:window.close()'>");
   newWin.document.write ("</FORM></CENTER></P>");
}
-->
