function zvetsi(cesta, sirka, vyska, titul){
var okno = window.open("","","width=" + sirka + ", height=" + vyska + ", left=" + Math.round((screen.availWidth - sirka)/2) + ", top=" + Math.round((screen.availHeight - vyska)/2) );	
var o = okno.document;
o.write ("<html><head><title>" + titul + "</title><meta http-equiv='content-type' content='text/html; charset=windows-1250'></head>");
o.write ("<body style='padding: 0; margin: 0; background-color: #000000;'>");
o.write ("<img style='display: block; margin: 0; border: none; width:" + sirka + "px; height:" + vyska + "px;' src='" + cesta + "' title='zavřít' alt='" + titul + "' onmouseover=this.style.cursor='pointer' onclick='window.close()' />");
o.write ("</body></html>");
okno.focus();
o.close();
}

function detectbrowser(){
if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ 
 var ieversion=new Number(RegExp.$1) }
 else  if (ieversion <= 6){
 alert("Váš prohlížeč je zastaralý. Všechny informace by se měly zobrazit, ale nejspíše je neuvidíte v té podobě, jak jsme zamýšleli. Doporučujeme Vám nainstalovat novější prohlížeč.");
}
}
