function PhotoView(picName, sizeW , sizeH)
{
picWin=open(picName,'','width='+sizeW+',height='+sizeH+',location=no,left=200,top=60,status=no,toolbar=no,menubar=no,resizable=no,scrollbars=no');
picWin.focus();
picWin.document.open();
picWin.document.writeln('<html>');
picWin.document.writeln('<head>');
picWin.document.writeln('<title>Map of Ukraine</title>');
picWin.document.writeln('<link rel="\stylesheet"\ href="\./css/img_win.css"\ type="text/css"\>');
picWin.document.writeln('</head>');
picWin.document.writeln('<body>');
picWin.document.writeln('<table>');
picWin.document.writeln('<tr><td>');
picWin.document.writeln('<img src='+picName+' alt="\Map of Ukraine"\>');
picWin.document.writeln('</td></tr></table>');
picWin.document.writeln('</body>');
picWin.document.writeln('</html>');
picWin.document.close();
}

function NewWin(picName, sizeW , sizeH)
{
picWin=open(picName,'','width='+sizeW+',height='+sizeH+',location=no,status=no,toolbar=no,menubar=no,resizable=no,scrollbars=yes');
picWin.focus();
}
