function changeBackgroundColor(element, color) {
	if(element != 0) {
		var div = document.getElementById(element);
		div.style.background = color;
	}
}

function changeBackgroundClear(element, color) {
	if(element != 0) {
		var div = document.getElementById(element);
		div.style.background = color;
	}
}

