/**
 * Sets/unsets the pointer in browse mode
 *
 * @param   object   the table row
 * @param   object   the color to use for this row
 *
 * @return  boolean  whether pointer is set or not
 */
function setOn(theCell)
{
        theCell.style.backgroundColor = '#999999';
}

function setTo(theCell, color)
{
        theCell.style.backgroundColor = color;
}