color=['Red','#b8402c','Dark Green','#2c781c','Yellow','#a08c00','Blue','#2c60b8','Pink','#b84484','Light Blue','#2894a0','Orange','#cc7000','Green','#28a030','Royal Purple','#6434cc','Teal','#1c785c','Violet','#a028a0','Sky Blue','#2c7cb8'];
function calc(X)
	{
	if(X!=parseInt(X)){alert('Player ID must be numeric.');return;}
	if(X.length<8){alert('Player ID must be 8 digits.');return;}

	X%=12;
	Y=gid('coltext');
	Y.replaceChild(ctn(color[X*2]),Y.firstChild);
	gid('color').style.backgroundColor=color[X*2+1];
	}

function res()
	{
	Y=gid('coltext');
	Y.replaceChild(ctn('Color'),Y.firstChild);
	gid('color').style.backgroundColor='#fff';
	}
