// JavaScript Document ### copyright miw.fr ###
	var TheHead = document.getElementById('head');
	var TheTab = document.getElementById('chasse');
	var TheFoot = document.getElementById('footer');
	var ThePub = document.getElementById('pub');
function Imprime() {
	TheHead.style.visibility = "hidden";
	ThePub.innerHTML = "";
	TheFoot.style.visibility = "hidden";
	TheTab.className = "imprim";
	window.print();
	window.setTimeout(function(){
		TheHead.style.visibility = "visible";
		TheFoot.style.visibility = "visible";
		TheTab.className = "";
	},6000);
}

