

function Show() { 
	if(layer){
		if(timer) clearTimeout(timer);
		
		for(menu=0; menu<Layer.length; menu++) {
			if(Layer[menu]) { 
				eval(layer).visibility = "hidden"; 
			} 
		}
		
		for(i=0; i<arguments.length; i++) { 
			menu=arguments[i]; eval(layer).visibility = "visible"; 
		}
	}
}

function Hide(){ 
	timer = setTimeout("Show()", 200); 
}

function Highlite(a) {
	//var hl=document.getElementById(a);
	//hl.style.backgroundColor=hovercolor;
}

function Dim(a) {
	//var dim=document.getElementById(a);
	//dim.style.backgroundColor=bgcolor;
}