<!--
function openWin( winHeight, winWidth, picSrc ){
    newWin = window.open('', '', 'height='+ winHeight + ',width='+ winWidth + 'toolbars=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><input type='button' value='Zatvori prozor' onclick='JavaScript:window.close()'>");
    newWin.document.write("</form></p>");
}
-->