/* skripty pro nonIE browsery */
function showMenu(e) {
	if (g_disableScripts) return;
	var id_menu, id_nastroj, kde;
	e.stopPropagation();
	id_menu = document.getElementById("menu");
	zdroj = e.currentTarget;
	zleva = zdroj.offsetLeft;
	shora = zdroj.offsetTop;
	if (g_nastroj != "" && g_nastroj != zdroj.id) {
		id_nastroj = document.getElementById(g_nastroj);
		id_nastroj.style.color = "#330000";
		id_nastroj.style.backgroundColor = "#ffeebb";
	}
	g_nastroj = zdroj.id;
	zdroj.style.color = "#ffeebb";
	zdroj.style.backgroundColor = "#962337";
	if (g_nastroj == "ctl00_obsah_vno" || g_nastroj == "ctl00_obsah_vla" || g_nastroj == "ctl00_obsah_vno" || g_nastroj == "ctl00_obsah_vcl"
	|| g_nastroj == "ctl00_obsah_cbs" || g_nastroj == "ctl00_obsah_arp") {
		id_menu.style.left = (zleva + 80).toString() + "px";
		id_menu.style.top = (shora + 4).toString() + "px"; }
	else if (g_nastroj == "ctl00_obsah_klav" || g_nastroj == "ctl00_obsah_varh") {
		id_menu.style.left = (zleva - 100).toString() + "px";
		id_menu.style.top = (shora + 3).toString() + "px"; }
	else if (g_nastroj == "ctl00_obsah_fl" || g_nastroj == "ctl00_obsah_hob" || g_nastroj == "ctl00_obsah_clar" || g_nastroj == "ctl00_obsah_fag") {
		id_menu.style.left = (zleva + 80).toString() + "px";
		id_menu.style.top = (shora - 46).toString() + "px"; }
	else if (g_nastroj == "ctl00_obsah_trb" || g_nastroj == "ctl00_obsah_hor" || g_nastroj == "ctl00_obsah_trom" || g_nastroj == "ctl00_obsah_tuba") {
		id_menu.style.left = (zleva - 100).toString() + "px";
		id_menu.style.top = (shora - 46).toString() + "px"; }
	else if (g_nastroj == "ctl00_obsah_akor" || g_nastroj == "ctl00_obsah_kyta" || g_nastroj == "ctl00_obsah_cimb" || g_nastroj == "ctl00_obsah_bici") {
		id_menu.style.left = (zleva - 100).toString() + "px";
		id_menu.style.top = (shora - 46).toString() + "px";
	}
		    
	id_menu.style.display = "block";
}

function hideMenu(e) {
	if (g_disableScripts) return;
	var id_menu;
	e.stopPropagation();
	id_menu = document.getElementById("menu");
	id_menu.style.display = "none";
	if (g_nastroj != "") {
		id_nastroj = document.getElementById(g_nastroj);
		id_nastroj.style.color = "#330000";
		id_nastroj.style.backgroundColor = "#ffeebb";
	}
}

function oznac(e) {
	if (g_disableScripts) return;
	e.stopPropagation();
}

function makeHref(e) {
	if (g_disableScripts) return;
	var zdroj, kotva, i;
	zdroj = e.currentTarget;
	i = zdroj.id;
	switch(i) {
		case "i_uplat":
			kotva = "char";
			break;
		case "i_vyuc":
			kotva = "vyuc";
			break;
		case "i_prijm":
			kotva = "prij";
			break;
	}
	zdroj.href = g_nastroj.substring(12) + ".aspx#" + kotva;
}
function ViewPicture(obraz, popis) {
	if (g_disableScripts) return;
	var kde;
	var popiska;
	popiska = document.getElementById("popis_obr");
	popiska.innerHTML = "loading...";
	kde = document.getElementById("fotobig");
	g_popiska = popis;
	kde.src = obraz;
	//window.scrollTo(0, 0);
}

function ViewLabel() {
	if (g_disableScripts) return;
	var popiska;
	popiska = document.getElementById("popis_obr");
	popiska.innerHTML = g_popiska;
}
