// Fonction limitant la largeur de la fenêtre pour les écrans très larges
	function redimWindow (vstart){

		if (document.getElementById("Bloc-encadre")) {
			if (document.documentElement.clientWidth>900) {
				if (document.getElementById("Bloc-encadre").style.display=="none"){
					document.getElementById("main-content").style.paddingRight = "182px";
					document.getElementById("Bloc-encadre").style.display="block";
				}
			} else {
				if (document.getElementById("Bloc-encadre").style.display!="none"){
					document.getElementById("main-content").style.paddingRight = "15px";
					document.getElementById("Bloc-encadre").style.display="none";
				}
			}
		}
	}

	window.onresize = document.onresize = redimWindow;
	window.onload = document.onload = redimWindow;


	function impdoc() {
   		window.print();
 	}