function imprime_zone(titre, obj, h, w) {

// Définit la zone à imprimer
var zi = document.getElementById(obj).innerHTML;

// centrer la popUp et ouvrir la fenetre

if (document.getElementById) { // NS
    var x=(window.innerWidth-w)/2;
    var y=(window.innerHeight-h)/2;
}

if (document.all) {
    var x=(document.body.offsetWidth-w)/2;
    var y=(document.body.offsetHeight-h)/2;
}

theOptions = "height="+h+",width="+w+",screenX="+x+",screenY="+y+",left="+x+",top="+y+",resizable=0,menubar=0,status=0,scrollbars=1,resizable=1";

var f = window.open("",'new',theOptions);

// Définit le Style de la page
//f.document.body.style.color = '#000000';
//f.document.body.style.backgroundColor = '#FFFFFF';
//f.document.body.style.padding = "10px";

// Ajoute les Données
f.document.title = titre;
//f.document.body.innerHTML +="<html><head><link rel='stylesheet' type='text/css' href='/lib/css/style.css'>";
//f.document.body.innerHTML +="</head><body>";
//f.document.body.innerHTML += "" + zi + "";
//f.document.body.innerHTML +="</body></html>";

f.document.open("text/html","replace");
f.document.write("<html>\n<head>\n<title>" + titre + "</title>\n");
f.document.write("<link rel='stylesheet' type='text/css' href='/lib/css/style.css'>\n");
f.document.write("</head>\n<body>\n");
f.document.write(zi);
f.document.write("\n</body>\n");
f.document.write("</html>\n");
f.document.close();

// Imprime et ferme la fenetre
f.window.print();
//f.window.close();
return true;
}
