
function setMenuInfo(theRow, theRowNum, theAction, theDefaultColor, thePointerColor, theMarkColor)
{
 //alert(theRow);
 //theRow.setAttribute('bgcolor', newColor, 0);
         if (theAction == 'out') {
            newColor              = theDefaultColor;
        }
        else if (theAction == 'over') {
            newColor              = theMarkColor;
        }
        theRow.style.backgroundColor = newColor;
 return true;
}



