function checkForm(){
	if(document.forms[0].Nom.value.length == 0)
    {alert("Donnez votre nom de famille, SVP"); return false;}
 	if( document.forms[0].prenom.value.length == 0)
    {alert("Donnez votre prénom, SVP"); return false;}
   
    if((document.forms[0].N°inscrit.value.length == 0)|| (document.forms[0].Ville.value.length == 0)) 
    {alert("Complétez le N° d'inscription et la Ville , SVP"); return false;}
    return true;
    
     	if( document.forms[0].Comm1.value.length == 25)
    {alert("Vous n'avez pas sélectionné la Communication N°1"); return false;}
    if( document.forms[0].Comm2.value.length == 25)
    {alert("Vous n'avez pas sélectionné la Communication N°2"); return false;}
if( document.forms[0].Comm3.value.length == 25)
    {alert("Vous n'avez pas sélectionné la Communication N° 3"); return false;}
if( document.forms[0].Comm4.value.length == 25)
    {alert("Vous n'avez pas sélectionné la Communication N°4"); return false;}
if( document.forms[0].Comm5.value.length == 25)
    {alert("Vous n'avez pas sélectionné la Communication N° 5"); return false;}

  return true;
}
