// JavaScript Document

<!--
function montre(id)
	{
	var i = 1;
	if (document.all)
		{
		var myAttributeName='className';
		}
	else
		{
		var myAttributeName='class';
		}
	/* */
	var i = 1;
	while(document.getElementById('smenu'+i))
		{
	
document.getElementById('smenu'+i).setAttribute(myAttributeName,'hiddenStructure');
		i++;
		}
	/* */
	if (id!=''&&document.getElementById(id))
		{
	
document.getElementById(id).removeAttribute(myAttributeName);
		}
	}
//-->