	/* fce pro nalezeni elementu dle id */
	function gEBI(id) {
		var el;
		//alert(typeof(document.getElementById)=='function')
		if(document.getElementById) {
			el = document.getElementById(id);
		} else if(document.all) {
			el = document.all[id];
		} else {
			return false;
		}
		return el;
	}
	
	/* pro styly */
	var IE6;
	if(navigator.appName=='Microsoft Internet Explorer' && document.compatMode) {
		IE6 = true;
	} else {
		IE6 = false;
	}
