function setClassForId(Id, Class) {

	if (document.getElementById) {
		TheBox = document.getElementById(Id);

		if (TheBox){
			TheBox.className = Class;
		}
	}

}
