/*function delete_mailinglist() {
	window.document.forms["frm_mailinglist"].mailing_courriel.value = "";
}

function send_mailinglist() {
	var v_courriel = window.document.forms["frm_mailinglist"].mailing_courriel.value;
	
	var url = "include/outils/add_mail.php";
	
		var xhr_object = null; 
	 
	if(window.XMLHttpRequest) // Firefox 
	   xhr_object = new XMLHttpRequest(); 
	else if(window.ActiveXObject) // Internet Explorer 
	   xhr_object = new ActiveXObject("Microsoft.XMLHTTP"); 
	else { // XMLHttpRequest non supporté par le navigateur 
	   alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest..."); 
		//document.getElementById("diff_form").style.visibility = "visible";
		//document.getElementById("diff_patience").style.visibility = "hidden";
	   return; 
	} 
	 
	xhr_object.open("POST",url, false); 
	xhr_object.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");        
	
	var data = "courriel=" + v_courriel;// + "&nom=" + v_nom +  "&courriel=" + v_courriel +  "&description=" + v_description + "&telephone=" + v_tel;
	
	xhr_object.send(data); 
	
	if(xhr_object.readyState == 4) {
		// Tout est ok
		document.getElementById("mailing_list_sct").innerHTML = '<p align="left">Enregistrement effectu&eacute;. Merci.</p>';
	}
	else {
		document.getElementById("mailing_list_sct").innerHTML  = '<p align="left" style="color:#FF0000;"><strong>L\'envoi de la demande a &eacute;chou&eacute;. Veuillez r&eacute;essayer.</strong></p>';
	}
}*/

function annuaire_ville_change() {
	var v_nom= window.document.forms["frm_ville"].ville_adresse.value;

		window.location = v_nom;

}