// JavaScript Document

function LoadImage(chemin,w,h)
   {
   i1 = new Image;
   i1.src = chemin;
   html = '<html><head><title>LoadImage</title></head><body scroll="no" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" onBlur="window.close()"><IMG src="'+chemin+'" BORDER=0 NAME=LoadImage ></body></html>';
   popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1,width='+w+',height='+h);
   popupImage.document.open();
   popupImage.document.write(html);
   popupImage.document.close()
   };
	
function show(id) {
  document.getElementById(id).style.visibility = 'visible'
}

function hide(id) {
  document.getElementById(id).style.visibility = 'hidden'
}

function lay2(a,i)
{
  document.getElementById("legende").innerHTML = a;
  document.getElementById("legende").style.top = 80+(i-1)*121+"px";
  show('legende')
}
