function ShowHide(single, totals)
{
	for(var s=1; s<=totals; s++)
	{
		menu = "l" + s ;
		var documents = document.getElementById(menu);

		
		if(s != single)
		{
			documents.style.display = 'none';
		}
		else{
			documents.style.display = '';
		}
	}
	
}