function NoError(){return true;}window.onerror=NoError;/* ----------------------------| GESTION BLOCS DU BLOG |---------------------------- */	function blogArticle() {	document.getElementById('article').style.cssText='display:block;';	document.getElementById('comment').style.cssText='display:none;';	document.getElementById('post-comment').style.cssText='display:none;';	}function blogComment() {	document.getElementById('article').style.cssText='display:none;';	document.getElementById('comment').style.cssText='display:block;';	document.getElementById('post-comment').style.cssText='display:none;';	}function blogPoster() {	document.getElementById('article').style.cssText='display:none;';	document.getElementById('comment').style.cssText='display:none;';	document.getElementById('post-comment').style.cssText='display:block;';	}/* ---------------------| VISUALISATION TEXTAREA  |--------------------------------*//*© 2002-2006, QuentinC http://www.quentinc.net/  modifié VDN 2008*/function markdown (str) {str = str.split("&").join("&amp;").split("<").join("&lt;").split(">").join("&gt;");vartab = [["\\*\\*(.+)\\*\\*", "<b>$1</b>"],["\\*(.+)\\*", "<i>$1</i>"],["\\\n", "<br />"],["\\\r", "<br />"]]; for(var i=0; i < tab.length; i++) {str = str.replace(new RegExp(tab[i][0], "g"), tab[i][1]);}return str;}function keyup (champ, id) {varstr = markdown(champ.value);document.getElementById(id).innerHTML = str;}/* ---------------------------| MOTEUR RECHECHE SUR LA PAGE |----------------------------- *//*> http://www.web-creation-fr.commodifié VDN 2008*/ var IE = (document.all);var win = window;    var n   = 0;function findInPage(str) {  var txt, i, found;  if (str == "") {        alert("Veuillez entrer un mot à chercher");		search.rechercher.value="Rechercher";		search.quoi.focus();			return false;	}	  if (document.all) {    txt = win.document.body.createTextRange();    for (i = 0; i <= n && (found = txt.findText(str)) != false; i++) {      txt.moveStart("character", 1);      txt.moveEnd("textedit");    }    if (found) {      txt.moveStart("character", -1);      txt.findText(str);      txt.select();      txt.scrollIntoView();      n++;    } else {      if (n > 0) {        n = 0;        findInPage(str);      } else {        alert("Le mot cherché n'existe pas sur cette page.");		search.rechercher.value="Rechercher";		search.quoi.focus();			DesactiveTouches();		}    }  } else {    if (!win.find(str))      while(win.find(str, false, true))        n++;    else      n++;    if (n == 0) {      alert("Le mot cherché n'existe pas sur cette page.");		search.rechercher.value="Rechercher";		search.quoi.focus();			DesactiveTouches();		}  }  return false;} function backhome(e){if (document.all){if (event.keyCode==114) {findInPage(document.search.quoi.value);}} else {if (e.which==114) {document.captureEvents(Event.KEYPRESS);}findInPage(document.search.quoi.value);}}function ActiveTouches() {document.onkeypress=backhome}function DesactiveTouches() {document.onkeypress="";}