// Procédures globales du projet
function NavigateurHauteur()
{
	return document.body.offsetHeight - (document.body.offsetHeight - document.body.scrollHeight);
}

function NavigateurLargeur()
{
	return document.body.offsetWidth - (document.body.offsetWidth - document.body.scrollWidth);
}

