function flash(tag) {
document.write(tag);
} 


function testmail()
{
  mail=document.getElementById("email").value;
  test=verifmail(mail);
  if(test==false)
  {
   alert("L'adresse email est invalide ! Merci de recommencer votre saisie !");
   document.getElementById("email").value="";
  }
}

function testmail2()
{
  email1=document.getElementById("email").value;
  email2=document.getElementById("emailconf").value;
  if(email1!=email2)
  {
   alert("Les champs email ne correspondent pas, merci de vérifier votre saisie !");
   document.getElementById("emailconf").value="";
  }
}


function verifmail(champ)
	{
	a = champ;
	valide1 = false;
	for(var j=1;j<(a.length);j++){
		if(a.charAt(j)=='@'){
			if(j<(a.length-4)){
				for(var k=j;k<(a.length-2);k++){
					if(a.charAt(k)=='.') valide1=true;
				}
			}
		}
	}
	return valide1;
	}
