
function fnColor(sTxtBoxId)
{
var oldcolor = document.getElementById(sTxtBoxId).value;
var newcolor = showModalDialog("/_layouts/1033/Eastman/ColorPicker.htm", oldcolor, "resizable: no; help: no; status: no; scroll: no;");
	if ((newcolor == null) || (newcolor == ''))
	{
		newcolor = oldcolor;
	}
	else
	{
		newcolor = "#"+newcolor;
	}

document.getElementById(sTxtBoxId).value = newcolor.toUpperCase();
}
