jsIE = document.all;
jsNs = document.getElementById;
function oznacObj(meno) {
	if (jsIE) return eval('document.all.'+meno);
	else if (jsNs) return document.getElementById(meno);
	else return false;
}
//otvaranie okna pri obrazkoch
function otvor_okno(obr, popis, sirka, vyska){
	window.focus();
	window.open("obr.php?obr="+obr+"&popis="+popis, "obrazok","location=yes, menubar=yes, width="+sirka+", height="+vyska+", top=20, left=0,  resizable=yes");
    return false;
	}	
function otvor_txt_okno(txt, sirka, vyska){
	window.focus();
	window.open("okno_txt.php?txt="+txt, "ceny","location=yes, menubar=yes, width="+sirka+", height="+vyska+", top=20, left=0,  resizable=yes");
	}	