function preloadImageMenu (_file_) {
	_file_ = new Image();
	_file_.src = "_images/menu/"+_file_+"-rollover.gif";
}

function divVisible(elem,etat) {
	if (etat) {
		document.getElementById(elem).style.visibility="visible";
		document.getElementById(elem).style.display = "" ;
	} else {
		document.getElementById(elem).style.visibility="hidden";
		document.getElementById(elem).style.display = "none" ;
	}
}

function checkInscription() {
	if (document.FORM_SUB.nom.value.length == 0) {
		document.FORM_SUB.nom.focus();
		alert("Merci d'indiquer votre nom...");
		return false;
	}
	if (document.FORM_SUB.prenom.value.length == 0) {
		document.FORM_SUB.prenom.focus();
		alert("Merci d'indiquer votre prénom...");
		return false;
	}
	if (document.FORM_SUB.email.value.length == 0) {
		document.FORM_SUB.email.focus();
		alert("Merci d'indiquer votre e-mail...");
		return false;
	}
	if (document.FORM_SUB.cp.value.length == 0) {
		document.FORM_SUB.cp.focus();
		alert("Merci d'indiquer votre code postal...");
		return false;
	}
	if (document.FORM_SUB.ville.value.length == 0) {
		document.FORM_SUB.ville.focus();
		alert("Merci d'indiquer votre ville...");
		return false;
	}
	return true;
}


