//Nasconde per id
function HideID(id){
	if(document.getElementById(id) != null){
		document.getElementById(id).style.display = "none";
	}
}

//Mostra per id
function ShowID(id){
	if(document.getElementById(id) != null){
		document.getElementById(id).style.display = "block";
	}
}