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

