function setPointer(theDiv, thePointerColor)
{
    if (thePointerColor == '' || typeof(theDiv.style) == 'undefined') return false;

    theRow.style.backgroundColor = thePointerColor;
    return true;
} 
