

function tableColor(table,color)
{
  tableObj = document.getElementById(table);
  tableObj.style.backgroundColor = color;
}
