
 function showSubMenu(subId, show){

	var subElem = document.getElementById(subId);
	
	 if( subElem ){
	   if( show )
		 subElem.style.display = '';
		else
		 subElem.style.display = 'none';
	 }
	 	 
 }
