//---[ FORMULAIRES ]----------------------------------------

// -- Vide le champ
function clearText(thefield){
	if (thefield.defaultValue == thefield.value)
	thefield.value = "";
	}

// -- Réinitialise le champ si vide
function initText(thefield){
	if (thefield.value == "" || thefield.value == " ")
	thefield.value = thefield.defaultValue;
	}
// JavaScript Document