function confirmForm(){
 var myForm = document.formulaire;

 if(
   myForm.elements['p1_c40'].checked == false &&
   myForm.elements['p1_c41'].checked == false &&
   myForm.elements['p1_c42'].checked == false &&
   myForm.elements['p1_c43'].checked == false &&
   myForm.elements['p1_c44'].checked == false &&
   myForm.elements['p1_c45'].checked == false &&
   myForm.elements['p1_c46'].checked == false &&
   myForm.elements['p1_c47'].checked == false
  ){
      alert("An option for : 'MOTIVATION TO ENTER THE WIN ATLANTIC NETWORK' must be selected.");
      //el.focus();
      return false;
  }

 for(i=1;i<=49;i++){
  var el = myForm.elements['p1_c'+i];
  if(el){
    if( (el.type=="text" || el.type=="textarea" ) && el.value==""){
      if(i<15 || i>23){
        if(i != 48){
          alert("This field is required.");
          el.focus();
          return false;
        }
      }
    }
  }
 }

 var el = myForm.elements['p1_c50'];
 if(el.options[el.selectedIndex ].value==""){
    alert("This field is required.");
    el.focus();
    return false;
 }

 return true;
}
function confirmDelete(){
  if(confirm("Do you realy want to delete this company's application ?")){
    document.formulaireVote.action = "index.php?option=com_content&view=article&id=158&lang=en&formulaireId=79&deleteForm=1";
    document.formulaireVote.submit();
  }
}

