function PopupWindow(url, width, height)
{
   okno = window.open('', 'podglad', 'dependent=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,resizeable=1,copyhistory=no,width='+width+',height='+height+',screenX=150,screenY=150,top=150,left=150');
   okno.document.open();
   okno.document.write('<?xml version="1.0" encoding="iso-8859-2" ?>');
   okno.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
   okno.document.write('<html xmlns="http://www.w3.org/1999/xhtml">');
   okno.document.write('<head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2" /><title>Podgl±d</title></head>');
   okno.document.write('<body style="margin: 0px; padding: 0px" onclick="window.close()"><img style="border: 0px none" src="'+url+'" alt="" /></body></html>');
   okno.document.close();
   okno.focus();
}