
function o_okno(cesta, jmeno, sirka, vyska, misto)
	{
	if (misto<0) {poloha=screen.availWidth-(sirka+20)+misto} else {poloha=misto}
	params="toolbar=no, menubar=no, location=no, directories=no, scrollbars=yes, resizable=yes, status=yes, top=10, left="+poloha+", width="+sirka+", height="+vyska
	okn=window.open(cesta, jmeno, params)
	}

function gid(co)
	{
	if (document.getElementById(co)) return document.getElementById(co);
	else return false;
	}

function style2px(hodnota) 
	{
	if (hodnota) return Number(hodnota.substr(0,hodnota.indexOf("px")));
	else return 0
	}

