<!--
/* confirm pour valider son choix en cas de suppression */
function confirmSubmit()
{
	var sur=confirm("Vous êtes sûr de vouloir supprimer ces données ?");
	if (sur)
	{
		return true ;
	}
	else
	{
		return false ;
	}
} 

function test_mailform()
{
	var f  = document.mymail;
	var ok = true;

	if ( !vide(f.mail) || !vide(f.mail) )                  	//verif. id_pays
    {
		alert("Hello !");
     	return false;     		
    }
}

function email(nom_champ)
{
	var ok=true;
 	var point= nom_champ.value.lastIndexOf('.');
 	var arob = nom_champ.value.lastIndexOf('@');
	var leng = nom_champ.value.length;

	if((leng-point < 3) || (leng-arob) < 6 || arob > point || point == -1 || arob == -1)
	{
 		alert('Veuillez entrer une adresse email valide !');
		nom_champ.select();
        ok=false;
	}
 	return ok;
}

function vide(nom_champ)
{
   	var ok=true;

    if (nom_champ.value=="")
   	{
    	alert("Ce champ doit être renseigné !");
        nom_champ.value="";
        nom_champ.focus();
        ok=false;
     }
     return ok;
}



//->
