/*
 * Fonctions Javascript utilisees pour fixer certains bugs du site (J. Foine - 2009)
 */
 
function fixBlocHeight(){
  var bloc = document.getElementById("contentbloc");
		if (bloc==null) return;


  // Chrome/Ffx
  var innerHeight = window.innerHeight;
  // IE ?
  if (!innerHeight) innerHeight = document.documentElement.offsetHeight;
//  var blocHeight = innerHeight-230;
  var blocHeight = innerHeight-175;

		blocHeight+='px';
		bloc.style.height = blocHeight;
}

