document.write('<table width=100%>')

	c=new Array('00','33','66','99','CC','FF');
	for(i=0;i<6;i++)
	    {for(j=0;j<6;j++)
			{document.write('<tr>')
			for(k=0;k<6;k++)
				{L=c[i]+c[j]+c[k]
				document.write('<td bgcolor=#'+L+'>'+L+'</td>')
				}
			document.write('</tr>')
			}
		}	
    document.write('</table>')