function togglevisibility(id){
	if(document.getElementById(id).style.display == 'none'){
		document.getElementById(id).style.display = 'block';
	}else{
		document.getElementById(id).style.display = 'none';
	}
}

function seleziona_campo(campo){
	campo.focus();
	campo.select();
}