// ---------Link Table Row ------------ //
function ChangeColor(tableRow, highLight)
    {
    if (highLight)
    { 
		 if(tableRow.className=='even'){
			tableRow.className = 'even highlight';
		  }	
		  else{
			tableRow.className = 'odd highlight'	
		  }
    }
    else
    {
        if(tableRow.className=='even highlight'){
			tableRow.className = 'even';
		  }	
		  else{
			tableRow.className = 'odd'	
	   }	  
    }
  }
  function DoNav(theUrl)
  {
    document.location.href = theUrl;
  }




// ---------Show & Hide Divs------------ //
function showHideDiv(divID){
  
  var divOb = document.getElementById(divID);
  
  if(divOb.style.display=='none'){
     divOb.style.display= "block";
  }
  else{
      divOb.style.display= "none";
  }

}