function Show_Menu() {
	var obj, args = Show_Menu.arguments;
	var CurObj = document.all;

		for (i=0; (CurObj=document.all[i]); i++) {
				if (CurObj.id.length > args[0].length)
				{
					if ((CurObj.id.substring(0,args[0].length)==args[0]))
					{
						if (CurObj.style.display == 'block') Hide_Show_Menu('none', CurObj.id);
						if (CurObj.id==args[1]) Hide_Show_Menu(args[2], args[1]);
					}
				}
		}
}

function Hide_Show_Menu(HideorShow, WhichOn)
{
	var obj = document.all[WhichOn];
	
	if (obj!=null) obj.style.display = HideorShow;
}

function ChoixFiliales() {
    var Target = document.filiales.choix.options[document.filiales.choix.selectedIndex].value;
    var popupWin=null;
    if (Target=="e")return;
    if (Target.indexOf("http")==0) {
            popupWin = window.open(Target, "Splash",' navbar=yes, status=yes, directories=no, toolbar=yes, location=yes, menubar=no,scrollbars=yes, resizable=yes');
    } else {
            var gesamte_url = document.URL;
            var slash = "\\";
            if (gesamte_url.indexOf("\\") == -1){
                    slash="\/"
            }              
    }
}

