// DHTML pour l'affichage des descriptions complètes des établissements
var LastSelect=0;

function onClickPlus(id)
{
	if(document.getElementById("row"+id).className =='OtherRow'){
		document.getElementById("row"+id).className = 'firstRow';
	}
	
	if (id!=LastSelect){
		document.getElementById("row"+LastSelect).className ='OtherRow';
	}

	LastSelect=id;
}