        
function soumissionConcours() {
  i=0;
  msg=[7];
    
  if (document.frmSyeux.email.value == '') {    
    document.frmSyeux.email.focus();
    msg[i++]="\tAdresse Email\n";
  }
  if( (document.frmSyeux.email.value.indexOf('@')==-1) ||
    (document.frmSyeux.email.value.indexOf('.')==-1) ||                
    (document.frmSyeux.email.value.length<5)
    ) {       
    document.frmSyeux.email.focus();
    msg[i++]="\tVotre adresse Email n'est pas valide\n";
  }
  if (document.frmSyeux.pays.value == '') {    
    document.frmSyeux.pays.focus();
    msg[i++]="\tpays\n";
  }
  if (document.frmSyeux.ville.value == '') {    
    document.frmSyeux.ville.focus();
    msg[i++]="\tVille\n";
  }
  if (document.frmSyeux.cp.value == '') {    
    document.frmSyeux.cp.focus();
    msg[i++]="\tCode Postal\n";
  }
  if (document.frmSyeux.adre.value == '') {    
    document.frmSyeux.adre.focus();
    msg[i++]="\tAdresse\n";
  }
  if (document.frmSyeux.prenom.value == '') {    
    document.frmSyeux.prenom.focus();
    msg[i++]="\tPrenom\n";
  }

  if (document.frmSyeux.nom.value == '') {    
    document.frmSyeux.nom.focus();
    msg[i++]="\tNom\n";
  }
  
  
  if (i) {
     mess="Veuillez-nous fournir les informations suivante Merci : \n";   
     while(i--) { mess+=msg[i]; }
     alert(mess);
     return false;
  }
   QZ_openBrWindow('/catalog/Html/event/sousnosyeuxrep.htm','','scrollbars=yes,resizable=no','550','360','true')
   return true;
}

function QZ_openBrWindow(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
         if(window.screen)if(isCenter)if(isCenter=="true"){
            var myLeft = (screen.width-myWidth)/2;
            var myTop = (screen.height-myHeight)/2;
            features+=(features!='')?',':'';
            features+=',left='+myLeft+',top='+myTop;
         }
         window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
} 

