				var hx = new Array(6);		//Color table
					hx[0]="00";
					hx[1]="33";
					hx[2]="66";
					hx[3]="99";
					hx[4]="CC";
					hx[5]="FF";
				var select;
				var colors1 = new Array(216);



						i=0;

				for( b=0;b<=5; b++) {			// Build the color array
					for( g=0;g<=5; g++) {
						for( r=0;r<=5; r++) {

						i++;

						colors1[i]="#" + hx[r] + hx[g] + hx[b];
						}
					}
				}
				document.write("<TABLE BORDER=0 CELLPADDING=0 ALIGN='CENTER'><TR>"); 

		for(i=1; i<=216; i++) {
			if( (i-1) % 36 == 0 && i != 1) {
				var image = i
				document.write("</tr>");
			if( i != 216) {
					document.write("<tr>");
			}

		}			//Set color links for color assignment

			document.write("<TD width=\"14\" height=\"14\" BGCOLOR=" + '"' + colors1[i] +  '"' + "><P><a href='#' onMouseOver='window.status=" + '"' +  colors1[i] + '"' + "; return true'"  + " onMouseOut='window.status=" + '""' + "; return true'" + " onClick='fillBox(" + '"' + colors1[i] +  '"' + ")'><img name=" + '"' + colors1[i] +  '"' + " src='images/clear.gif' width='10' height='10' border='0'> </a></P></TD>"); 
		}
			document.write("</table>");

			//copyright Thomas R. Powell 2000
		
