//Fonctions qui permet d'afficher un groupe ou de le masquer 
/*
<div id="groupDetailsHidden_1">			  
  <a href="#" onclick="javascript:showGroupDetails(1); "> Afficher</a>			  
</div>			
<div id="groupDetailsShown_1" class="hidden">			
 <a href="#" onclick="javascript:hideGroupDetails('1'); "> Cacher</a>	
 <br>Texte à afficher
 </div>
*/
function showGroupDetails( idCurrentWork )
{
	window.document.getElementById( 'groupDetailsHidden_' + idCurrentWork ).style.display = 'none';
	window.document.getElementById( 'groupDetailsShown_' + idCurrentWork ).style.display = 'block';
}

function hideGroupDetails( idCurrentWork )
{
	window.document.getElementById( 'groupDetailsHidden_' + idCurrentWork ).style.display = 'block';
	window.document.getElementById( 'groupDetailsShown_' + idCurrentWork ).style.display = 'none';
}

//Fonction qui permet l'ouverture d'une page passé en parametre.
//------------------------------------------------------------------------------
function OuvrirFenetre(page) 
{
	var modeWin;
	modeWin = "alwaysRaised=yes,resizable=yes,toolbar=no,titlebar=no,scrollbars=yes,width=900,height=550" ;
	fen=window.open(page,"" , modeWin) ;
}
