
function redirect(value){

document.location.href="index2.php?etat="+value;

}

function verif(){

var adresse = document.form.email.value;
var place = adresse.indexOf("@",1);
var point = adresse.indexOf(".",place+1);
if ((place > -1)&&(adresse.length >2)&&(point > 1)){}else
	{
		alert('Entrez une adresse e-mail valide!!');
		document.form.email.focus();
		document.form.email.style.backgroundColor='#d8ed09';
		return false;
	}
	

document.form.submit();

}