// GESTION DU SCROLLING PAR RAPPORT A LA DIMMENTION DE LA FENETRE AVEC LES CSS
function scrolling() {
	if((navigator.appName.indexOf("Explorer") >= 0) && (navigator.appVersion.indexOf('6')>=0 )) {
			screenW = document.documentElement.clientWidth;
			screenH = document.documentElement.clientHeight;
			//alert(screenW);
			if (screenW<myScrollBoxW || screenH<myScrollBoxH) document.documentElement.style.overflow = "auto";
			else document.documentElement.style.overflow = "hidden";
	} else {
			screenW = window.innerWidth;
			screenH = window.innerHeight;
			if (screenW<myScrollBoxW || screenH<myScrollBoxH)  document.body.parentNode.style.overflow = "auto";
			else document.body.parentNode.style.overflow = "hidden";
	}
}