﻿// Debut Ajout MAB pour les formulaires
function clearText(thefield)
{
	if (thefield.defaultValue==thefield.value)
		thefield.value = "";
}

function checkText(thefield)
{
	if (thefield.value=="")
		thefield.value = thefield.defaultValue;
}
// Fin Ajout MAB pour les formulaires