// JavaScript Document

function couleur(obj) {
     obj.style.backgroundColor = "#ffffff";
}

function check() {
	var msg = "";

if (document.formulaire.t.value == "")	{
		msg += "Veuillez saisir votre recherche";
		document.formulaire.t.style.backgroundColor = "#e0d6d7";
	}

	if (msg == "") return(true);
	else	{
		alert(msg);
		return(false);
	}
}
