function cliqueEnvoiListe( strLangue ) {
	if( document.getElementById( "div_envoi_liste_fr" ) && document.getElementById( "div_envoi_liste_bouton_fr" ) && document.getElementById( "div_envoi_liste_an" ) && document.getElementById( "div_envoi_liste_bouton_an" ) ) {
		if( strLangue == "an" ) {
			document.getElementById( "div_envoi_liste_fr" ).style.display = "none";
			document.getElementById( "div_envoi_liste_bouton_fr" ).style.display = "none";
			document.getElementById( "div_envoi_liste_an" ).style.display = "block";
			document.getElementById( "div_envoi_liste_bouton_an" ).style.display = "block";
		} else {
			document.getElementById( "div_envoi_liste_fr" ).style.display = "block";
			document.getElementById( "div_envoi_liste_bouton_fr" ).style.display = "block";
			document.getElementById( "div_envoi_liste_an" ).style.display = "none";
			document.getElementById( "div_envoi_liste_bouton_an" ).style.display = "none";
		}
	}
}

//valide le courriel entre et retour true ou false
function valide_courriel_input( courriel ) {
	var regCourrielValide = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]{2,}[.][a-zA-Z.]{2,9}$/;
	return regCourrielValide.test( courriel );
}
	
function envoiInscription( strLangue ) {

	if( document.getElementById( "input_nom_"+ strLangue ) && document.getElementById( "input_courriel_"+ strLangue ) ) {
		if( valide_courriel_input( document.getElementById( "input_courriel_"+ strLangue ).value ) )
			ajaxCall( "inscription_liste_envoi.asp?langue="+ strLangue +"&nom="+ document.getElementById( "input_nom_"+ strLangue ).value +"&courriel="+ document.getElementById( "input_courriel_"+ strLangue ).value );
		else if( strLangue == "an" )
			alert( "Your email adress is incorrect." );
		else
			alert( "Vous avez entré un courriel invalide." );
	}
}

function envoiInscription_pop( strLangue ) {

	if( document.getElementById( "input_nom_pop_"+ strLangue ) && document.getElementById( "input_courriel_pop_"+ strLangue ) ) {
		if( valide_courriel_input( document.getElementById( "input_courriel_pop_"+ strLangue ).value ) )
			ajaxCall( "inscription_liste_envoi.asp?langue="+ strLangue +"&nom="+ document.getElementById( "input_nom_pop_"+ strLangue ).value +"&courriel="+ document.getElementById( "input_courriel_pop_"+ strLangue ).value );
		else if( strLangue == "an" )
			alert( "Your email adress is incorrect." );
		else
			alert( "Vous avez entré un courriel invalide." );
	}
}
