function changeSquareColor(target, color)
{
	document.getElementById(target).style.backgroundColor = color;
}
