	/*
	+--------------------------------------------------
	|	Montre - Affiche le bloc
	|	> id (int)	: ID du bloc à afficher
	+--------------------------------------------------
	*/

	function show( id )
	{
		document.getElementById(id).style.display = 'block';
		}
	
	/*
	+--------------------------------------------------
	|	Cache - Masque le bloc
	|	> id (int)	: ID du bloc à masquer
	+--------------------------------------------------
	*/	
	function hide( id )
	{
		document.getElementById(id).style.display = 'none';
	}



