function Imprimer()
{
	var txt = document.getElementById('CONT1').innerHTML;
	txt = txt.replace('onclick=Imprimer();', '');			
	var imprime = window.open('','', '');
	imprime.document.write('<html><bo' + 'dy>' + txt  + '</bo' + 'dy></html>');
}
function popupImg(chemin)
{
   var img = new Image;
   img.src = chemin;
   html = '<html><head><title>Vue Grand format</title></head><body scroll="no" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" bgcolor="#ECF7FF" onBlur="top.close()"><IMG src="'+chemin+'" BORDER=0 NAME=ImageMax onLoad="window.resizeTo(document.ImageMax.width+10,document.ImageMax.height+30)"></body></html>';
   popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
   popupImage.document.open();
   popupImage.document.write(html);
   popupImage.document.close()
}

function hover(obj){

if(document.all){
    liste = obj.getElementsByTagName('ul');
    if(liste.length > 0){
      itemMenu = liste[0].style;
      if(itemMenu.display == 'none' || itemMenu.display == ''){
        itemMenu.display = 'block';
      }else{
        itemMenu.display = 'none';
      }
    }
  }
}


function setHover(id){
  td = document.getElementById(id).getElementsByTagName('td');
  nbTd = td.length;
  for(i=0; i < nbTd; i++){
    td[i].onmouseover = function(){
      hover(this);
    }
    td[i].onmouseout = function(){
      hover(this);
    }
  }
}
