function DayColor(_Obj, _TextColor, _BGColor, _ImgId, _ImgFile) {
  _Obj.style.color = _TextColor;
  _Obj.style.backgroundColor = _BGColor;

 labelImg = document.getElementById(_ImgId);
 labelImg.src = _ImgFile;
}

