function unblur() {
	this.blur();
}


<!--
function MM_validateForm() { //v4.0
  if (document.getElementById){
    var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
    for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=document.getElementById(args[i]);
      if (val) { nm=val.name; if ((val=val.value)!="") {
        if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
          if (p<1 || p==(val.length-1)) errors+='- '+nm+' doit etre une adresse email valide\n';
        } else if (test!='R') { num = parseFloat(val);
          if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
          if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
            min=test.substring(8,p); max=test.substring(p+1);
            if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
      } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' is required.\n'; }
    } if (errors) alert('Erreur :\n'+errors);
    document.MM_returnValue = (errors == '');
} }
//-->




// Fonction pour l'effet d'ascenseur dans les Questions/Reponses -> Questions Frequentes
var btn=1;

var Application =  {

  showCode: function(a, id, question) {
	  a.innerHTML = $(id + "Rep").visible() ? "<a href='#"+(id + "Rep")+"' class='questionFerme'>"+question+"</a>" : "<a href='#"+(id + "Rep")+"' class='questionOuvert'>"+question+"</a>"
		
		if (($(id + "Rep").visible())==false) {
			btn=1
		} else {
			btn=0;
		}
		
	if (btn==1) { //il est masque donc on l'affiche
		new Effect.BlindDown($(id + "Rep"), 1);
		btn=0;
		} else {// il est affiche donc on le masque
			new Effect.BlindUp($(id + "Rep"), 1);
			
			btn=1;
		}    
  	}
}



<!-- Fonction permettant d'afficher le lien actif/inactif au clic sur la carte -->
function visibilite() {
	$$('#carte p a').each(function(lienCarte) {
		lienCarte.observe('click', function() {
			if (lienCarte.hasClassName("inactif")) {
				lienCarte.removeClassName("inactif");
				lienCarte.addClassName("actif");
				$$('#carte p a').each(function(otherLien) {
					if (otherLien != lienCarte && otherLien.hasClassName("actif")) {
						otherLien.removeClassName("actif");
						otherLien.addClassName("inactif");
					}
				});
				}
			});
		});
	}
	
<!-- Fonction permettant d'afficher+masquer le bloc Agence -->
function agenceNom(agence) {
		$(agence).removeClassName("ferme");
		$(agence).addClassName("ouvert");
		$$('#listeAgences ul').each(function(otherAgence) {
		if (otherAgence != $(agence) && otherAgence.hasClassName("ouvert")) {
			otherAgence.removeClassName("ouvert");
			otherAgence.addClassName("ferme");
			}
		});
	}
