// Debut

function init() {
	if (document.body)
	{
	var larg = (document.body.clientWidth);
	var haut = (document.body.clientHeight);
	}
	else
	{
	var larg = (window.innerWidth);
	var haut = (window.innerHeight);
	}
}

// Script DHTML by SnowKhan -->
function show_hide(bloc,blocimg) {
	elt=document.getElementById(bloc);
	if (elt.style.display == 'none') {
		document.getElementById(bloc).style.display='block';
		document.getElementById(blocimg).src='themes/fca_v1/images/menu_off.jpg';
	}
	else {
		document.getElementById(bloc).style.display='none';
		document.getElementById(blocimg).src='themes/fca_v1/images/menu_on.jpg';
	}
}

// fin du script -->

