function imprime_zone(obj)
   {
      // Définit la zone à imprimer
	  var zi = document.getElementById(obj).innerHTML;
      //var Headers = '<!DOCTYPE HTML PUBLIC ><HTML><HEAD></HEAD><BODY onload="window.print();window.close()">';
	  var Headers = '<!DOCTYPE HTML PUBLIC ><HTML><HEAD></HEAD><BODY style="color:black; background-color:white; padding:20px; font-family:Trebuchet MS"><div style="width:100%; clear:both; height:65px; position:relative; padding-bottom:60px;"><img src="images/logo_vima.gif" width="236" height="65" alt="Cuisines Vima Design Inc." style="float:right; height:65px; width:236px;" /></div>';
      var Footers = "</body></html>";

      // Ouvre une nouvelle fenetre
      var f = window.open("", "ZoneImpr", "height=500, width=500,toolbar=0, menubar=0, scrollbars=1, resizable=1, status=0, location=0, left=10, top=10");
	  
	  // Ajoute les Données
	  f.document.write ("" + Headers + zi +Footers);
	  f.window.print();
      f.document.close();

      // Imprime et ferme la fenetre
      return;
   }
