
/**************************************************************************
** Projet :			GEOCAWI
** Nom du fichier : accueil.inc.js
** Créé le :		09/11/16 				
** par: Mihary
***************************************************************************/

function getWindowHeight() { if (document.all) { return document.body.offsetHeight; } else { return window.innerHeight; }}
function getWindowWidth() { if (document.all) { return document.body.offsetWidth; } else { return window.innerWidth; }}

function initHomeLayout(){
	var hCtt = getWindowHeight() - document.getElementById('footerBgVert').offsetHeight - 10;
	var hCttAccueil = document.getElementById('contenuAccueil').offsetHeight;
	document.getElementById('gcwDroite').style.left = (getWindowWidth()/2);
	if(hCtt>350){
		hCtt = hCtt;
		document.getElementById('contenuAccueil').style.top = ((hCtt-hCttAccueil)/2)+50;
	}
	else hCtt = 350;
	document.getElementById('gcwCtt').style.height = hCtt+'px';
}