function GUMB_ShowPopup(gumb) {
	hp = document.getElementById(gumb+"2");
	bb = document.getElementById(gumb+"1");
	if ( bb.className != "gumbzgorajodprt" ) {
		bb.className = "gumbzgorajodprt";
	}

	if ( hp.style.visibility!= "visible" ) {
		hp.style.visibility = "visible";
	}
}

function GUMB_KeepPopup(gumb) {
	hp = document.getElementById(gumb+"2");
	bb = document.getElementById(gumb+"1");
	if ( bb.className != "gumbzgorajodprt" ) {
		bb.className = "gumbzgorajodprt";
	}

	hp.style.visibility = "visible";
}

function GUMB_HidePopup(gumb) {
	if (!/MSIE (5\.5|6)/.test(navigator.userAgent)) {
		this.gumb=gumb;
		/*
		myGlobalVar = this;
		setTimeout("myGlobalVar.GUMB_HidePopup_exec();",1000);
		*/
		this.GUMB_HidePopup_exec();
	}
}

function GUMB_HidePopup_exec() {
	bb = document.getElementById(this.gumb+"1");
	bb.className = "gumbzgoraj";

	hp = document.getElementById(this.gumb+"2");
	hp.style.visibility = "hidden";
}


function toggleBliznjice() {
	bp = document.getElementById("bliznjicepopup");
	if ( bp.style.visibility!= "visible" ) {
                bp.style.visibility = "visible";
        } else {
		bp.style.visibility = "hidden";
	}
}



