var last = "";

	function DisplayMenu(theDivName){
	
		if (theDivName !=""){	
		
			if(last!="")
			{
				document.getElementById(last).innerHTML=document.getElementById('divSubMenu').innerHTML;
			}
			last=theDivName;
			theDiv=document.getElementById(theDivName);		
			document.getElementById('divSubMenu').innerHTML=theDiv.innerHTML;
			theDiv.innerHTML="";
		}
	}	
	
	function Highlight(sub,parent){
		var Parent = "";		
		var bgColor= "#CCCCCC";
		var fontColor = "#000000"
		
		//Highlight top level only
		if ((parent == "") && (sub != "")){
			Parent = "Top" + sub +"TD1";
			document.getElementById(Parent).setAttribute('bgColor', bgColor);		//Set Slant TD BGCOLOR
			
			Parent = "Top" + sub +"TD2";
			document.getElementById(Parent).setAttribute('bgColor', bgColor);		//Set Text TD BGCOLOR			
			
			Parent = "Top" + sub +"A";
			document.getElementById(Parent).style.color = fontColor;				//Set Link COLOR
			
			if (sub == 10001){
				Parent = "slant";
				document.getElementById(Parent).setAttribute('bgColor', bgColor);	// Set Slant bg color if first is selected
			}
			
		//Highlight top and bottom
		} else if ((parent != "") && (sub != "")){
			Parent = "Top" + parent +"TD1";
			document.getElementById(Parent).setAttribute('bgColor', bgColor);		//Set Slant TD BGCOLOR
			
			Parent = "Top" + parent +"TD2";
			document.getElementById(Parent).setAttribute('bgColor', bgColor);		//Set Text TD BGCOLOR	
						
			Parent = "Top" + parent +"A";
			document.getElementById(Parent).style.color = fontColor;				//Set Link COLOR
			
			if (sub == 10001){
				Parent = "slant";
				document.getElementById(Parent).setAttribute('bgColor', bgColor);	// Set Slant bg color if first is selected
			}						
			
			document.getElementById(sub).setAttribute('bgColor', bgColor);			// Set subMenu bgColor
		}							
	}