// c2005
// uli schmidts
// for westerholt-gysenberg.de
// all rights reserved

// sets the active menuitem to 'activated'
// needs the variable "mA" to be set in the page
function loadFlipA(){
	if(typeof(mA)!= "undefined"){
   		if (mA != "" && mA != " " && mA > 0){
			var selDiv = document.getElementById("m" + mA);
			if(typeof(selDiv) != "undefined"){
				selDiv.setAttribute((document.all ? 'className' : 'class'),'msel');
			}
		}
    }
}