/*=================================================================
Function: highlight
Purpose:  change la couleur du highlighted du menu
==================================================================*/


    function ChangeColor(tableRow, highLight)
    {
    if (highLight)
    {
      tableRow.style.backgroundColor = '#b1b1b1';
    }
    else
    {
      tableRow.style.backgroundColor = 'white';
    }
  }

  function DoNav(theUrl)
  {
  document.location.href = theUrl;
  }

/*=================================================================
Function: ClickabletTable
Purpose:  la couleur de fond d'une table avec une url
==================================================================*/

	function ChangeColor2(tableRow, highLight)
	{
			if (highLight)
			{
				tableRow.style.backgroundColor = '#b1b1b1';
			}
			else
			{
				tableRow.style.backgroundColor = 'white';
			}
	}
	function DoNav2(theUrl)
	{
		document.location.href = theUrl;
	}



