// JavaScript Document
function inscr(action_wanted){
	//alert("log="+document.getElementById("login_sendmdp").value+"<br />"+"mail="+document.getElementById("mail").value);
	if(document.getElementById("mail").value != ""){
		//test des valeurs obligatoires
		if(test_isvalidmail(document.getElementById("mail").value) != true){
			alert(txtentervalidmail);
			document.getElementById("mail").focus();
			return;
		}
		
		//parametrage action
		if(action_wanted == "hello")
			document.getElementById("action").value = "abo";
		else			
			document.getElementById("action").value = "desabo";
		
		//soumission du formulaire si valide
		document.getElementById("form_diff").submit();
	}
	else
		alert(txtenterobl);
}