// JavaScript Document
var farbe = new Array 	("#cc6600","#999999","#000000","#666666");

function GetColor() {
	x = Math.floor(Math.random()*farbe.length);
	return zufall = farbe[x];
}

document.write("<table class='klein' align=right>");
	for (z=1;z<4;z++){
		document.write("<tr>");
			for (i=1;i<=70;i+=3){
			document.write("<td bgcolor="+GetColor()+" width=10>&nbsp;</td>");
			}
		document.write("</tr>");
	}
document.write("</table>");