function show(a, b, c) {
	document.getElementById(a).style.backgroundImage = "url(img/Menu_Btn_Left_Side_BIG.jpg)";
	document.getElementById(b).style.backgroundImage = "url(img/Menu_Btn_Center_Side_BIG.jpg)";
	document.getElementById(c).style.backgroundImage = "url(img/Menu_Btn_Right_Side_BIG.jpg)";
}
function hidden(a, b, c) {
	document.getElementById(a).style.backgroundImage = "url(img/Menu_Btn_Left_Side.jpg)";
	document.getElementById(b).style.backgroundImage = "url(img/Menu_Btn_Center_Side.jpg)";
	document.getElementById(c).style.backgroundImage = "url(img/Menu_Btn_Right_Side.jpg)";
}
/*************/
function over (a) {
	document.images["m1"].src = a;
}
/***************/
function champ() {
	if (document.form1.titre.value.length == 0) {
		alert("Veuillez introduire votre nom, Merci");
		document.form1.titre.focus();
		return false;
	}
	if (document.form1.tel.value.length == 0) {
		alert("Veuillez introduire un numéro de téléphone, Merci");
		document.form1.tel.focus();
		return false;
	}
}
