function showList(id){
	document.getElementById(id).style.display="";
}
function hiddenList(id){
		document.getElementById(id).style.display="none";
}
