var xmlhttps= new Array();function loadXMLdoc(url, id, attente) { var i= xmlhttps.length; if(attente != null) {  document.getElementById(id).innerHTML= attente; } if(window.XMLHttpRequest) {/*Mozilla*/  xmlhttps[i]= new XMLHttpRequest();  xmlhttps[i].onreadystatechange= function() { xmlhttpChange(i, url, id); };  xmlhttps[i].open("GET", url, true);  xmlhttps[i].send(null); } else if(window.ActiveXObject) {/*IE*/  xmlhttps[i]= new ActiveXObject("Microsoft.XMLHTTP");  if(xmlhttps[i]) {   xmlhttps[i].onreadystatechange= function() { xmlhttpChange(i, url, id); };   xmlhttps[i].open("GET", url, true);   xmlhttps[i].send();  } }}function xmlhttpChange(i, url, id) { if(xmlhttps[i].readyState==4) {/*complete*/  if(xmlhttps[i].status < 400) {   document.getElementById(id).innerHTML= xmlhttps[i].responseText;  }  else {   document.getElementById(id).innerHTML= "[<span title=\""+url+"\">Erreur "+xmlhttps[i].status+"</span>]";  } }}/* compte les car *//*Script téléchargé du Coin Web de QuentinChttp://www.quentinc.net/*/function setCharCounter (a, b, n) {var o = document.getElementById(a);o.charCounterMax= n;o.charCounterDisplay = b;o.onkeyup = charCounterUpdate;}function charCounterUpdate () {var n = this.value.length;if (n > this.charCounterMax){ alert("Vous ne pouvez pas dépasser " + this.charCounterMax + " caractères.");return false;}if (this.charCounterDisplay){var o = document.getElementById(this.charCounterDisplay);if (o.tagName.toLowerCase()=="input") o.value = n;else o.innerHTML = n;}}/* extraits accueil */function showExtrait(id) {		document.getElementById(id).style.display = 'block';		document.getElementById('test').innerHTML = id;	}function hideExtrait(id) {		document.getElementById(id).style.display = 'none';	}