<!--
function random_number( min, max )
{
		return (Math.round((max-min) * Math.random() + min));
} 

var hexCode = new Array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f");

var totalHex=hexCode.length;

var colorArray = new Array();
var numbw=0;
var numcolor=0;


for (i=0; i<totalHex; i++)
{
	for (j=0; j<totalHex; j++)
	{
		colorArray[numbw]=hexCode[i] + hexCode[j];
		numbw++;
	}
}


function fontColor()
{
	var newcolorR = colorArray[random_number(0, 225)];
	var newcolorG = colorArray[random_number(0, 225)];
	var newcolorB = colorArray[random_number(0, 225)];
	var fullhex = "#" + newcolorR + newcolorG + newcolorB;
	//document.write("<span style='font-family: "+ font +"; font-size: '"+ size +"px; color: '"+ fullhex + ";'>");
	return fullhex;
}

function textColor()
{
	var newcolorR = colorArray[random_number(0, 225)];
	var newcolorG = colorArray[random_number(0, 225)];
	var newcolorB = colorArray[random_number(0, 225)];
	var fullhex = "#" + newcolorR + newcolorG + newcolorB;
	//document.bgColor=fullhex;
	return fullhex;
}


function textRed()
{
	var newcolorR = colorArray[random_number(0, 225)];
	var fullhex = "#" + newcolorR + "0000";
	//document.bgColor=fullhex;
	return fullhex;
}

function textBlackWhite()
{
	var newcolor = colorArray[random_number(0, 225)];
	var fullhex = "#" + newcolor + newcolor + newcolor;
	//document.bgColor=fullhex;
	return fullhex;
}

//-->