function showSubMenu(id,act){
	if(!document.getElementById(id)) return;
	o=document.getElementById(id);
	if(act==null) {
	if(o.style.display=='none') o.style.display='block'; else o.style.display='none';
	}else o.style.display=act;
}
