function ApplyGreenBarToTable(table)
{
    table.style.cssText = "BORDER-RIGHT: #333333 1px solid; BORDER-TOP: #333333 1px solid; FONT-SIZE: 10pt; BORDER-LEFT: #333333 1px solid; BORDER-BOTTOM: #333333 1px solid; BORDER-COLLAPSE: collapse; BACKGROUND-COLOR: #ffffff; MARGIN-LEFT: 8px;";
    table.rules = "all";
    table.borderColor = "#333333";
    table.border = 1;
    table.cellSpacing = 0;
    table.cellPadding = 2;

	for (i = 0; i < table.rows.length; i++)
	{
		row = table.rows[i];
		
		row.vAlign = "top";
		
        if (i == 0)
	        row.style.cssText = "FONT-WEIGHT: bold; COLOR: white; BACKGROUND-COLOR: #0077dd; text-align: left";
        else if (i & 1 == 1)
	        row.bgColor = "#fffee0";
	}
}                        
