// JavaScript Document
function changeBackground(cell,color) {

	if(document.getElementById)

	{

        cell = document.getElementById(cell);

	    cell.style.background=color;

	}

}