function highlightCells(id)
{
	if (!document.getElementById) return;
var
  i,
  E=document.getElementById(id),
  td;

  if(E&&E.tagName=='TABLE')
	{
    	td=E.getElementsByTagName('TD');
	    for(i=0;i<td.length;i++)
		{
 			if ((i%4==0) || (i%4==1)) td[i].className='highlight1'; else td[i].className='highlight2';
		}
	}
}