




// MENÜS ----------------------------------------------------------------------------------------



// Welches DOM ?
var ie4 = document.all;
var ns6 = document.getElementById && !document.all;



// PopUp 
function MenueShow(Show,Color) {
    if(ie4) {
    document.all(Show).style.visibility = "visible";
    document.all(Color).style.color = "#f5ad0b";


	}
    else { 
	if(ns6) {
	document.getElementById(Show).style.visibility = "visible";
	document.getElementById(Color).style.color = "#f5ad0b";

	}
    }
}


function MenueHide(Hide,Color) {
    if(ie4) {
	document.all(Hide).style.visibility = "hidden";
	document.all(Color).style.color = "#777777";
	}
    else { 
	if(ns6) {
	document.getElementById(Hide).style.visibility = "hidden";
	document.getElementById(Color).style.color = "#777777";
	}
    }
}





//---------------------------------------------------------------------------------------------------




