function afficher(tbl,xx)
{
	for(i=0;i<tbl.all.length-1;i++)
	{
		if(tbl.all.item(i).id==xx.id)
		{
					if(xx.style.display=='')
						xx.style.display='none';
					else	
						xx.style.display='';
		}
		else
		{
			if(tbl.all.item(i).id.length!=0)
			{
					tbl.all.item(i).style.display='none';
			}
		}
	}
}