function cwp_k(s,k)
{
	x="<TD WIDTH=30 HEIGHT=30 BGCOLOR=\"#"
	y="\">&nbsp;</TD>"
	lg=x+"00A000"+y//green
	lz=x+"000000"+y//black
	lr=x+"E00000"+y//red
	lb=x+"0000FF"+y//blue
	lw=x+"FFFFC0"+y//white
	lp=x+"C000C0"+y//purple
	lo=x+"FFA000"+y//orange
	le=x+"E0E000"+y//yellow
	lu="<TD WIDTH=30 HEIGHT=30 ALIGN=\"CENTER\">?</TD>"
	document.writeln("<TABLE ALIGN=\"CENTER\" BORDER=\"0\" CLASS=\"cwp\"><TR>")
	len=s.length
	for(i=0;i<len;i++)
	{
		c=s.substr(i,1)
		if(c=="g")document.write(lg)
		else if(c=="z")document.write(lz)
		else if(c=="r")document.write(lr)
		else if(c=="b")document.write(lb)
		else if(c=="w")document.write(lw)
		else if(c=="p")document.write(lp)
		else if(c=="o")document.write(lo)
		else if(c=="e")document.write(le)
		else document.write(lu)
		if (i%k == k-1)
			document.writeln("</TR><TR>")
	}
	document.writeln("</TR></TABLE>")
}
function cwp(s){cwp_k(s,15);}
