﻿function MyTDColor(tableRow, highLight) 
{ 
if (highLight) 
{ 
tableRow.style.backgroundColor = '#f7f7f3'; 
tableRow.style.textColor = '#ffffff'; 
tableRow.style.cursor='pointer'; 
window.status=''; 
} 
else 
{ 
tableRow.style.backgroundColor = '#f0eeef'; 
window.status=''; 
} 
} 

function TDNav(TDUrl) 
{ 
document.location.href = TDUrl; 
} 

