// JavaScript Document
var puceOn = "images/puce_bleu.gif";
var puceOff = "images/puce_blanc.gif";
var puceMenuOn = "images/arrow.gif";
var puceMenuOff = "images/spacer.gif";

function imgOn(img){
	document.getElementById(img).src=puceOn;
}

function imgOff(img){
	document.getElementById(img).src=puceOff;
}

function menuOn(img){
	document.getElementById(img).src=puceMenuOn;
}

function menuOff(img){
	document.getElementById(img).src=puceMenuOff;
}

/**pour la page du plan du site **/
function showItem(w_id){
	document.getElementById(w_id).src="images/img"+w_id+"on.GIF";
	document.getElementById("txt").src="images/txt"+w_id+".GIF";
}
function hideItem(w_id){
	document.getElementById(w_id).src="images/img"+w_id+"off.GIF";
	document.getElementById("txt").src="images/spacer.gif";
}

/**pour la page contacts **/
function checkData() {
	var lstFields = new Array ("NOM","ADRESSE","CODEPOSTAL","VILLE","PAYS");
	for (var i=0;i<lstFields.length;i++){
		if(document.getElementById(lstFields[i]).value=='') {alert('le champ '+lstFields[i]+' est obligatoire !');return false;}
	}
	if((document.getElementById("TEL").value=='')&&(document.getElementById("MAIL").value=='')) {
		alert("Renseignez le téléphone ou le mail");
		return false;
	}
	return true;
}