function print_zone() {
 window.print();
}

function zoom(nomImg)
 {
  i1 = new Image;
  i1.src = "../phototheque/"+nomImg;
  html = '<HTML><HEAD><TITLE>Zoom</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER><a href="javascript:window.close();"><IMG SRC="../phototheque/'+nomImg+'" BORDER=0 NAME=imageTest ALT="cliquez pour fermer" onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)"></a></CENTER></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 lienNew(urlLien) {
 window.open(urlLien,"","toolbar=1,location=1,status=1,menubar=1,scrollbars=1,width=800,height=600");
}