

	function afficheBlock(idBlock)
	{
		new Ajax.Request('ajax.php',
		{
			method: 'post',
			parameters: 'idBlock='+idBlock,
			onSuccess: function(ajax)
			{
				$('block').replace(ajax.responseText);
				
			}
		});
	}