// Procédures globales du projet
function COLLECTIONGFI_GETDISPLAY(VID){{var VSRES="";VSRES=eval(((clWDEncode.sEncodeCharset(unescape("document.getElementById(\'"))+VID)+clWDEncode.sEncodeCharset(unescape("\').style")))).display;return(VSRES)}}
function COLLECTIONGFI_WIDTHMAX(){{var VWW=Getwindowwidth();var VWP=PageLargeur();if((VWP>VWW)){return(VWP)}else {;return(VWW)}}}
function COLLECTIONGFI_HEIGHTMAX(){{var VHW=Getwindowheight();var VHP=PageHauteur();if((VHW>VHP)){return(VHW)}else {;return(VHP)}}}
function COLLECTIONGFI_SETDISPLAY(VID, VVALEUR){{eval(((clWDEncode.sEncodeCharset(unescape("document.getElementById(\'"))+VID)+clWDEncode.sEncodeCharset(unescape("\').style")))).display=VVALEUR}}
// hauteur interne navigateur
function Getwindowheight() 
{
	var windowHeight=0;
	if (typeof(window.innerHeight)=='number') { 
		windowHeight=window.innerHeight;
		
		}
	else {
		if (document.documentElement&&document.documentElement.clientHeight) {
			windowHeight = document.documentElement.clientHeight;
			}
		else {
			if (document.body&&document.body.clientHeight) {
				windowHeight=document.body.clientHeight;
				}
			}
		}
	windowHeight+=document.body.scrollTop;
	return windowHeight;
}
// largeur interne du navigateur
function Getwindowwidth() 
{
	var windowWidth=0;
	if (typeof(window.innerWidth)=='number') { 
		windowWidth=window.innerWidth;
		
		}
	else {
		if (document.documentElement&&document.documentElement.clientWidth) {
			windowWidth = document.documentElement.clientWidth;
			}
		else {
			if (document.body&&document.body.clientWidth) {
				windowWidth=document.body.clientWidth;
				}
			}
		}
	windowWidth+=document.body.scrollLeft;
	return windowWidth;
}
function PageHauteur()
{
	return document.body.offsetHeight - (document.body.offsetHeight - document.body.scrollHeight);
}
function PageLargeur()
{
	return document.body.offsetWidth - (document.body.offsetWidth - document.body.scrollWidth);
}

