﻿function setAStyle(domEl, onColor)
{
	var elTxt = document.getElementById(domEl);
	elTxt.style.color = onColor;
}

