function changeBackgroundColor(layerName, bgColorName, textColorName) {
	document.all[layerName].style.backgroundColor = bgColorName;
	document.all[layerName].style.color = textColorName;
}

