 function openWin(URL,nom,format)
 { //v2.0
  window.open(URL,nom,format);
 }
 
 
 function validerForm()
{
	chaine_test=window.document.form1.telephone.value.substring(0,2);
	if (window.document.form1.telephone.value == "")
	 {
	alert("Vous devez indiquer un numéro de téléphone");
	return false;
	}
	if ( chaine_test == "06" || chaine_test == "07" || chaine_test == "08" ||
chaine_test == "09")
	{
		alert("Vous avez saisi un numéro de téléphone non valide");
		return false;
	}
	if((isNaN(window.document.form1.telephone.value)) || (window.document.form1.telephone.value.length != 10))
	{
		alert("Vous avez saisi un numéro de téléphone non valide");
		return false;
	}

    TELEPHONE = window.document.form1.telephone.value;
	TELVALIDE = 1;
	popUp("http://vieprat.quitel.net/saisieTicket.php?telephone="+TELEPHONE+"&telValide="+TELVALIDE,'inscription','scrollbars=yes, width=480, height=530');
	return true;  
}
  function telecharger(titre,code)
 { 
window.open('http://www.sante-psychologie.com/_paiement/index.php?MC_TITRE_METHODE='+titre+'&MC_CODE_METHODE='+code,'send_purchase','scrollbars=1, resizable=1, status=1, width=765, height=600, left=200, top=150');
 } 

function popUp(URL,Name,Option) {

  window.open(URL,Name,Option);

}

document.onkeydown = function ()
{
       if( event.keyCode == 13)
        {
		return false;
        }
}
