//
// Zoom...
//
function fiche_produit(id) {
	var X = 800;
	var Y = 800;
	var Left = (screen.width  - X) / 2;
	var Top  = 0;

	the_URL = "fiche_produit.php?id=" + id;
	var fen = window.open(the_URL,"ficheproduit","toolbar=no,status=no,location=no,resizable=yes,scrollbars=yes,copyhistory=0,menubar=no,width=" + X + ",height=" + Y + ",left=" + Left + ",top=" + Top);
	fen.focus();
}
//////////////////////////////////////////////////


//
// Print...
//
function print_liste() {
	var X = 650;
	var Y = 500;
	the_URL = "print_liste.php";
	var fen = window.open(the_URL,"printliste","toolbar=no,status=no,location=no,resizable=yes,scrollbars=yes,copyhistory=0,menubar=no,width=" + X + ",height=" + Y + ",left=0,top=0");
	fen.focus();
}
//////////////////////////////////////////////////