function zmien_tlo(xx, yy) { 
document.getElementById(xx).style.background = "url(" + yy + ")"; 
} 

function on_td(xx) {
	TempColor = xx.style.backgroundColor;
	xx.style.backgroundColor = "#ECF1FF";
}

function out_td(xx) {
	xx.style.backgroundColor = TempColor;
}
