<!--
function grand(source) {
  if(document.body) { var larg=(document.body.clientWidth); var haut=(document.body.clientHeight); }
  else { var larg=(window.innerWidth); var haut=(window.innerHeight); }
  var limage=document.getElementById("big_image");
  limage.src="./articles/"+source;
  limage.width=300;
  //limage.style.top=""+(haut-limage.height)/2+"px";
  //limage.style.left=""+(larg-limage.width)/2+"px";
  limage.style.visibility="visible";
}

function petit() {
   if(document.getElementById("big_image")) {
      document.getElementById("big_image").src="./images/blank.gif";
      document.getElementById("big_image").style.visibility="hidden";
   }
}

function marquee_gauche() {
   document.getElementById("marquee_articles").direction="left";
   document.getElementById("marquee_articles").start();
}

function marquee_droite() {
   document.getElementById("marquee_articles").direction="right";
   document.getElementById("marquee_articles").start();
}

function reaslisation() {
   document.write('Site réalisé par <a href="mailto:%6F%75%65%62%65%6D%61%73%74%65%72%40%67%6D%61%69%6C%2E%63%6F%6D">Mathias PHILIPPE</a> & charte graphique par <a href="mailto:%6C%75%64%6F%76%69%63%76%61%6C%6C%65%74%74%65%40%79%61%68%6F%6F%2E%66%72">Ludovic VALLETTE</a> et <a href="mailto:%61%6E%74%6F%69%6E%65%62%61%63%68%31%34%40%79%61%68%6F%6F%2E%66%72">Antoine BACH</a>');
}
-->