//-----------------------------------------------------------------------------------------------------------------------
// OUVRIR UNE POPUP AVEC PROPRIETES
//-----------------------------------------------------------------------------------------------------------------------

function OuvresFenetre(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;
  }
   // OLD :window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
   // RECENT : window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
  var myWindow = window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
  myWindow.focus();
}

function sendmail(obj)
{
      if(obj.tel.value==''||obj.mail.value=='')
          {alert('des champs obligatoires sont vides!!!');
	       return 0;
		   }
      
   else {
           res = obj.mail.value.indexOf("@", 0);
			if (res=='-1')
			{alert('Veuillez saisir un e-mail valide!!!');
	       return 0;
		   }
		   else 
		   {obj.action="email.php";
             obj.submit();
			 obj.reset();
			 return 1;
			}
			
		 }
    
}

