// JavaScript Document

function imprimer() {
var zi = document.getElementById('menu-resto').innerHTML;
var f = window.open("", "ZoneImpr", "height=600, width=600,toolbar=0, menubar=0, scrollbars=1, resizable=1,status=0, location=0");
f.document.title = "Restaurant La Terrasse";
f.document.body.innerHTML += "" + zi + "";
f.window.print();
f.window.close();
return true;
}
