// JavaScript Document

function showMenu(ID,ACT) { 
	if 		(ACT == 'show') {
		document.getElementById(ID).style.display = ''; 
	}
	else if (ACT == 'hide') {
		document.getElementById(ID).style.display = 'none'; 
	}	
}	
