
function openWin( winHeight, winWidth, picSrc ){
	newWin = window.open('', '', 'height='+ winHeight + ',width='+ winWidth + 'toolbars=no, scrollbars=yes' );
	newWin.document.write("<html><head><title>FOTOGRAFIJA: "+ picSrc +"</title></head><body>");
	newWin.document.write("<a href='JavaScript:window.close()' title='Zatvori'>");
	newWin.document.write("<img src=" + picSrc + " style='border: 0'>");            
	newWin.document.write("</a>");
	newWin.document.write("</body></html>");
}
