<?php
<HTML><HEAD>
<TITLE>Color Mixer</TITLE>
</HEAD>
<BODY BGCOLOR="#ffffff"><div align=center>
<SCRIPT LANGUAGE="JavaScript">
<!--
var MainHeight=8;
MainWidth=8;
var hex = new Array(6);
hex[0] = "FF"; hex[1] = "CC"; hex[2] = "99";
hex[3] = "66"; hex[4] = "33"; hex[5] = "00";
function drawCell(red, green, blue) {
self.document.write('<TD BGCOLOR="#' + red + green + blue + '">')
self.document.write('<A HREF="javascript:top.up.display('' + (red + '', '' + green + '', '' + blue) + '')">')
self.document.write('<IMG SRC="1.gif" BORDER=0 HEIGHT='+MainHeight+' WIDTH='+MainWidth+'>')
self.document.write('</A></TD>')
}
function drawRow(red, blue) {
self.document.write('<TR>')
for (var i = 0; i < 6; ++i) { drawCell(red, hex[i], blue) }
self.document.write('</TR>')
}
function drawTable(blue) {
self.document.write('<TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0>')
for (var i = 0; i < 6; ++i) { drawRow(hex[i], blue) }
self.document.write('</TABLE>')
}
function drawCube() {
self.document.write('<TABLE CELLPADDING=0 CELLSPACING=5 BORDER=0><TR>')
for (var i = 0; i < 6; ++i) {
self.document.write('<TD>')
drawTable(hex[i])
self.document.write('</TD>')
}
self.document.write('</TR></TABLE>')
}
drawCube();
// -->
</SCRIPT>
</div></BODY></HTML>
?>