function MyTR(tableRow, OverRow)
{
    if (OverRow)
    {
        tableRow.style.backgroundColor = '#FBE5C3';
        tableRow.style.cursor='pointer';
		window.status='External Link';
    } 
    else
    {
        tableRow.style.backgroundColor = '#EBD5B3';
		window.status='';            
    }
}
function TRLink(TRUrl, newWindow)
{
	if (newWindow)
	{
		window.open(TRUrl);
	}
	else
	{
		document.location.href = TRUrl
	}
}
