function changeBG( num, col ) {
	cell = document.getElementById( num );
	if( cell ) {
		cell.bgColor=col;
	}
}
