// ActionScript Document
function MyTDColor(tableRow, highLight) 
{ 
if (highLight) 
{ 
tableRow.style.backgroundColor = 'white'; 
} 
else 
{ 
tableRow.style.backgroundColor = '#F3F3F3'; 
} 
} 
function TDNav(TDUrl) 
{ 
document.location.href = TDUrl; 
} 
