function DrawRow(color1,color2,nn,team,oo,gg,bb,mm,aa,yy,pp,av)
		{	
		document.writeln("			<tr class=" + color1 + ">");	
	DrawCells(nn,color1,color2);	
		document.writeln("				<td>" + team + "</td>");	
	DrawCells(oo,color1,color2);	
	DrawCells(gg,color1,color2);	
	DrawCells(bb,color1,color2);	
	DrawCells(mm,color1,color2);	
	DrawCells(aa,color1,color2);	
	DrawCells(yy,color1,color2);	
	DrawCells(pp,color1,color2);	
		document.writeln("				<td align='center'>" + av + "</td>");	
		document.writeln("			</tr>");
		} 
		
function DrawCells(svalue,scolor1,scolor2)
 {	
	document.writeln("				<td align='center'>" + svalue + "</td>");	
	}