/**
   	 * recupere un element par son id
   	 *		s( 'id1' );
   	 *		s( 'id1', 'id2', 'id3', 'idn' );
   	 */
		function e( eid )
   	{
   		return document.all ? document.all[ eid ] : document.getElementById( eid );
   	}
   	
   	/**
   	 * Rend invisible un liste d'element
   	 *		h( 'id1' );
   	 *		h( 'id1', 'id2', 'id3', 'idn' );
   	 */
		function h( )
   	{
   		for( var i = 0; i< arguments.length; i++ )
   		{
   			if ( typeof( arguments[ i ] ) == 'string' )
   			{
   				var elm = e( arguments[ i ] );
   				elm.style.display = 'none';
   			}
   		}
   	}
   	/**
   	 * Rend visible un liste d'element
   	 *		s( 'id1' );
   	 *		s( 'id1', 'id2', 'id3', 'idn' );
   	 */
   	function s( )
   	{
   		for( var i = 0; i< arguments.length; i++ )
   		{
   			if ( typeof( arguments[ i ] ) == 'string' )
   			{
   				var elm = e( arguments[ i ] );
   				elm.style.display = 'block';
   			}
   		}
   	}
   	/**
   	 * Rend visible un element et cache les autres elements ( ceux qui sont specifier )
   	 * 	ex: 
   	 *			- rend visible id1 et cache id2 et id3
   	 *				sh( 'id1' , 'id2', 'id3' );
   	 */
   	function sh( eid )
   	{
   		if ( typeof( eid ) == 'string' )
   		{
   			s( eid );
   			for( var i = 1; i < arguments.length; i++ )
   			{
   				h( arguments[ i ] )
				}
   		}
   	}

