// JavaScript Document
    function ChangeColor(tableRow, highLight){
    if (highLight){
      tableRow.style.backgroundColor = '#809FFF';
	  document.body.style.cursor = 'hand';}
    else{
      tableRow.style.backgroundColor = '#EFEFEF';
	  	  document.body.style.cursor = 'default';}
  	}
  function DoNav(theUrl){
  document.location.href = theUrl;}

    function ChangeColor2(tableRow, highLight){
    if (highLight){
      tableRow.style.backgroundColor = '#450b0a';
	  document.body.style.cursor = 'hand';}
    else{
      tableRow.style.backgroundColor = '#DDDDDD';
	  	  document.body.style.cursor = 'default';}
  	}
      function ChangeColor3(tableRow, highLight){
    if (highLight){
      tableRow.style.backgroundColor = '#81090A';
	  document.body.style.cursor = 'hand';}
    else{
      tableRow.style.backgroundColor = '#232323';
	  	  document.body.style.cursor = 'default';}
  	}
