function doHilightRow(tableRow, highLight) {
    if (highLight) {
        for (var i = 0; i < tableRow.cells.length; i++) {
            tableRow.cells[i].style.backgroundColor = '#666666';
        }
        tableRow.style.cursor = "hand";
    } else {
        for (var i = 0; i < tableRow.cells.length; i++) {
            tableRow.cells[i].style.backgroundColor = '#333333';
        }
        tableRow.style.cursor = "pointer";
    }
}

function doRowClick(url) {
    document.location.href = url;
}

function noClick(e) {
    if (!e) var e = window.event;
    e.cancelBubble = true;
    if (e.stopPropagation) e.stopPropagation();
}
