window.onload = function()
{ 
 elems=document.getElementsByTagName("span");
  for(i=0; i<elems.length;i++)
  {
   var elem=elems[i];
   if(elem.className=="clickfix")
   {
    elem.outerHTML = elem.innerHTML;
    elem.style.display = "";
   }
  }
} 

//-------------------------------------------------------------------------------
// Notice légale
//-------------------------------------------------------------------------------
function showCPR(s)
{
            var y = new Date().getYear();
            if (y<1900) y+=1900;
            if (s!=y)
                        document.write(s + " - " + y);
            else
                        document.write(y);
}

//-------------------------------------------------------------------------------
// Compatibilité Firefox
//-------------------------------------------------------------------------------
function GetId(Ctl) {
	return document.getElementById(Ctl)
}

//-------------------------------------------------------------------------------
// Menu_haut
//-------------------------------------------------------------------------------
var nbTab = 1
	function sw(id)
	{
		for (i=1;i<=nbTab;i++) clearTimeout(time[i]);
		for (i=1;i<=nbTab;i++) closesw(i);

		GetId("tab"+id).style.display="";				
	}
		
	function closesw(id)
	{
		GetId("tab"+id).style.display="none";				
	}
	
	var time = Array(0,0,0,0,0)
	function startTimer(id)
	{
		time[id] = setTimeout("closesw("+id+")",1000);
	}
	
	function blockTimer(id)
	{
		clearTimeout(time[id]);
	}