function afficheMaxi(chemin)
     {
  
     i1 = new Image();
     i1.src = chemin;
  
     html = '<html><head><title>Magasin SEVJ</title></head><body leftmargin=0 marginwidth=0 topmargin=5 marginheight=0  bgcolor="#ffffff"><center><img src="'+chemin+'" border=0 NAME=image onLoad="window.resizeTo(document.image.width+24,document.image.height+100)"></center></body></html>';
     popupImage = window.open('','_blank','toolbar=no,location=no,directories=no,menuBar=no,scrollbars=no,resizable=yes, width=100, height=100, left=250, top=125');
     popupImage.document.open();
     popupImage.document.write(html);
     popupImage.document.close()
     }
function afficheId(baliseId) 
  {
  if (document.getElementById && document.getElementById(baliseId) != null) 
    {
    document.getElementById(baliseId).style.visibility='visible';
    document.getElementById(baliseId).style.display='block';
    }
  }

function cacheId(baliseId) 
  {
  if (document.getElementById && document.getElementById(baliseId) != null) 
    {
    document.getElementById(baliseId).style.visibility='hidden';
    document.getElementById(baliseId).style.display='none';
    }
  }