function HighlightRow(currentRow)
{
  currentRow.className = "menutd_on";
}

function deHighlightRow(selectedRow, currentRow)
{
  if (selectedRow != currentRow)
  {		
    currentRow.className = "menutd_off";  	
    if (selectedRow == null)
    {
  	  firstSelect.className = "menutd_on";
    }
  }
}

function ActivateSelected(selectedRow, currentRow)
{
  if (selectedRow == currentRow)
  {
  } else {
    if (selectedRow != null)
	{
	  selectedRow.className = "menutd_off";
	}
	else
	{			  
	  firstSelect.className = "menutd_off";
	}
	selectedRow = currentRow;
  }
  return selectedRow;
}

function Navgiate(URL)
{
  parent.frames[2].location.href = URL; 
}

var selectedRow;