function rank(ID_imbarcazione){
	document.getElementById("rank_"+ID_imbarcazione).style.display = "block";
}
function rank_hide(ID_imbarcazione){
	document.getElementById("rank_"+ID_imbarcazione).style.display = "none";
}

function conta_caratteri(){
	document.getElementById("span_num_caratteri").innerHTML = (400 - (1*document.form.Testo_commento.value.length));
	document.form.Testo_commento.value = document.form.Testo_commento.value.substr(0,400);
}
