function showmenu(elmnt, divId, num) {
   if(elmnt != 'ListMenu4' && elmnt != 'ListMenu5')
    document.getElementById(elmnt).style.visibility = "visible";    
	
    var html;

    document.getElementById(divId).style.backgroundImage = "url(images/headerBtnHot.png)";
    html = document.getElementById("bdTextDiv" + num);

    html.style.color='#FFFFFF';
}
function hidemenu(elmnt, divId, num) {

    var html;
    if(elmnt != 'ListMenu4' && elmnt != 'ListMenu5')
    document.getElementById(elmnt).style.visibility = "hidden";

    document.getElementById(divId).style.backgroundImage = "url(images/headerBtn.png)";
    html = document.getElementById("bdTextDiv" + num);
    
    html.style.color = '#666666';    
}

function ChangeColor(tableRow, highLight) {
    if (highLight) {
        tableRow.style.color = '#FFFFFF';
    } else {
        tableRow.style.color = 'black';
    }
}

