function ChangeBgColor(object,color)
{ 
	document.getElementById(object).style.background = color;
	document.getElementById(object).style.backgroundColor = color;
}

