	function doChallengeResponse(formulaire) {
		str = document.forms[formulaire].passwd.value;
		if (str!="") {
			document.forms[formulaire].pwdMembre.value = MD5(str);
			document.forms[formulaire].passwd.value = "";
		}
	}
	
	function goDown() {
			var sel1 = document.getElementById('id1').options[document.getElementById('id1').selectedIndex].value;
			var sel2 = document.getElementById('id2').options[document.getElementById('id2').selectedIndex].value;
			var sel3 = document.getElementById('id2').options[document.getElementById('id3').selectedIndex].value;
			var sel4 = document.getElementById('id2').options[document.getElementById('id4').selectedIndex].value;
			document.getElementById('2_' + sel1).selected = true;
			document.getElementById('3_' + sel2).selected = true;
			document.getElementById('4_' + sel3).selected = true;
			document.getElementById('5_' + sel4).selected = true;
		}
	
	function confirmation(id, d) {
		var msg = "Êtes-vous sûr de vouloir supprimer cette news ?";
		if (confirm(msg)) {
			location.replace("/php/gestionNews.php?action=Supprimer&id=" + id + "&d=" + d);
		}
	}
	
	function confirmSupprItw(id, d, l) {
		var msg = "Êtes-vous sûr de vouloir supprimer cette interview ?";
		if (confirm(msg)) {
			location.replace("/php/gestionItw.php?action=Supprimer&id=" + id + "&d=" + d + "&l=" + l);
		}
	}
	
	function confirmSupprUser(id, d) {
		var msg = "Êtes-vous sûr de vouloir supprimer cet utilisateur ?";
		if (confirm(msg)) {
			location.replace("/php/gestionUser.php?action=Supprimer&id=" + id + "&d=" + d);
		}
	}
	
	function confirmSupprMedia(id, d) {
		var msg = "Êtes-vous sûr de vouloir supprimer ce média ?";
		if (confirm(msg)) {
			location.replace("/php/gestionMedia.php?action=Supprimer&id=" + id + "&d=" + d);
		}
	}
	
	function confirmSupprLR(id, d) {
		var msg = "Êtes-vous sûr de vouloir supprimer ce Live Report ?";
		if (confirm(msg)) {
			location.replace("/php/gestionLive.php?action=Supprimer&id=" + id + "&d=" + d);
		}
	}
	
	function confirmSupprLabel(id, d) {
		var msg = "Êtes-vous sûr de vouloir supprimer ce label ?";
		if (confirm(msg)) {
			location.replace("/php/gestionLabel.php?action=Supprimer&id=" + id + "&d=" + d);
		}
	}
	
	function confirmSupprGroupe(id, d) {
		var msg = "Êtes-vous sûr de vouloir supprimer ce groupe ?";
		if (confirm(msg)) {
			location.replace("/php/gestionGroupe.php?action=Supprimer&id=" + id + "&d=" + d);
		}
	}
	
	function confirmSupprEvent(id, d) {
		var msg = "Êtes-vous sûr de vouloir supprimer cet évènement ?";
		if (confirm(msg)) {
			location.replace("/php/gestionEvent.php?action=Supprimer&id=" + id + "&d=" + d);
		}
	}
	
	function confirmSupprChro(id, d) {
		var msg = "Êtes-vous sûr de vouloir supprimer cette chronique ?";
		if (confirm(msg)) {
			location.replace("/php/gestionChro.php?action=Supprimer&id=" + id + "&d=" + d);
		}
	}
	
	function confirmSupprPtnr(id) {
		var msg = "Êtes-vous sûr de vouloir supprimer ce partenaire ?";
		if (confirm(msg)) {
			location.replace("/php/gestionPtnr.php?action=Supprimer&id=" + id);
		}
	}
	
	function confirmSupprFlyer(id) {
		var msg = "Êtes-vous sûr de vouloir supprimer ce flyer ?";
		if (confirm(msg)) {
			location.replace("/php/gestionFlyer.php?action=Supprimer&id=" + id);
		}
	}