var menuTimeOut = -1;
var cOpenMenu = -1;

function openMenu(menu){
	
	
	if(cOpenMenu != -1){
		clearMenus(cOpenMenu);
	}
	if(menuTimeOut != -1){
		clearTimeout(menuTimeOut);
	}
	menuTimeOut = setTimeout("clearMenus('"+menu+"')", 3000);
	
	var menuContainer = document.getElementById(menu+"MenuContainer");
	menuContainer.style.display = "block";

	var cMenu = document.getElementById(menu+"Menu");
	cMenu.style.visibility = "visible";
	cOpenMenu = menu;
}


function resetInterval(){
	//alert(menuTimeOut);
	if(menuTimeOut != -1){
		clearTimeout(menuTimeOut);
	}
	menuTimeOut = setTimeout("clearMenus('"+cOpenMenu+"')", 3000);
}


function clearCurrentMenu(){
	if(menuTimeOut != -1){
		clearTimeout(menuTimeOut);
	}
	clearMenus(cOpenMenu);
}

function clearMenus(menu){
	if(menu!= -1 && menu != undefined){

		var cMenu = document.getElementById(menu+"Menu");
		cMenu.style.visibility = "hidden";
		hideMenuContainer(menu);
	}
}

function hideMenuContainer(menu){
	var menuContainer = document.getElementById(menu+"MenuContainer");
	menuContainer.style.display = "none";
}

function openKontakt(){
	var theForm = document.getElementById('directorySearchForm');
	cID = theForm.categories.selectedIndex;
    caid = theForm.categories.options[cID].value;
    if(caid != "none"){
        newURL = "directory.php?aid="+caid;
        window.open(newURL, "directoryFrame");
    }
    
}

function openIndex(inVerband){
	var theForm = document.getElementById('directorySearchForm');
	cID = theForm.categories.selectedIndex;
    caid = theForm.categories.options[cID].value;
    if(caid != "none"){
        newURL = "indexdirectory.php?aid="+caid+"&inVerband="+inVerband;
        window.open(newURL, "directoryFrame");
    }
    
}

function openInfo(aId){
  infoW = window.open("verband/info.php?table=kontakt&aId="+aId, "_blank", "width=450,height=450,scrollbars=yes,resizable=yes");
  infoW.focus();
}

function openFoto(fotoURL, w, h){
	var picWindow = window.open(fotoURL, "picWindow", "width="+w+",height="+h);
	picWindow.focus();	
}
