function setRowColors (el, bgcolor, textcolor) {
		el.style.backgroundColor = bgcolor;
		el.style.color = textcolor;
		if (textcolor == "#fff") textcolor = "#9ac2db";
		if (el.getElementsByTagName("div")) el.getElementsByTagName("div")[0].style.color = textcolor;
}
