// JavaScript Document
function check_mail(email)
{
	var place = email.indexOf("@",1);
	var point = email.indexOf(".",place+1);
	if ((place > -1)&&(adresse.length >2)&&(point > 1)){
		return true;
	}else{
		return false;
	}
}

function checkCheckBox(f,message){
if (f.agree.checked == false )
{
alert(message);
return false;
}else
return true;
} 

function verif_nb_checkbox(pForm,max){
	var nb=0;
	for (i=0, n=pForm.elements.length; i<n; i++){
		var objName = pForm.elements[i].name;
		var objType = pForm.elements[i].type;
		if (objType = "checkbox"){
			box = eval(pForm.elements[i]);
			if (box.checked == true) nb++;
		}
	} 
	if(nb>max){ alert('Vous ne pouvez cocher que '+max+' cases'); return false; } else { return true; }
}



/*______ OUVERTURE/FERMETURE DIV _________*/

 function OpenLayer(id){
   if(document.getElementById(id).style.display == "block") {
    document.getElementById(id).style.display = "none" ;
   }
   else {
    document.getElementById(id).style.display = "block" ;
   }
   window.status =  document.getElementById(id).style.display;
 }

  /*______ OUVERTURE/FERMETURE DIV _________*/
