function areaShow(elem){
	
	var thisUl=document.getElementById(elem);

	if(thisUl.style.display!="block"){
		thisUl.style.display="block";
	}else{
		thisUl.style.display="none";
	}
	
}
