function appear(id){
	document.getElementById(id).style.display="";
}	
function disappear(id){
	document.getElementById(id).style.display="none";
}