/*
 * Gestion des formulaires
 */

// Fonction d'initialisation des input des formulaires 
function checkFormInputTextValue(oInput, bFocus, strValue) {
	if (!bFocus) {
		if (oInput.value == "") {
			oInput.value = strValue;
		}
	} else {
		oInput.value = "";
	}
}
