function affiche_masque(id)
{
	if ( document.getElementById(id).style.display == "inline" )
		document.getElementById(id).style.display = "none";
	else 
		document.getElementById(id).style.display = "inline";
}

function highlight(field) {
	field.focus();
  	field.select();
}