<!--  
function newColor(idCell_one,idCell_two,img_name,img_src) {
eval('document.all.'+idCell_one+'.style.background = "#C8C6E4"');
eval('document.all.'+idCell_two+'.style.background = "#C8C6E4"');
eval("document."+img_name+".src=('"+img_src+"')");
eval('document.getElementById("' + idCell_one + '").style.background = "#C8C6E4"');
eval('document.getElementById("' + idCell_two + '").style.background = "#C8C6E4"');
}

function backColor(idCell_one,idCell_two,img_name,img_src) {
eval('document.all.'+idCell_one+'.style.background = "#E0DEF1"');
eval('document.all.'+idCell_two+'.style.background = "#E0DEF1"');
eval("document."+img_name+".src=('"+img_src+"')");
eval('document.getElementById("' + idCell_one + '").style.background = "#E0DEF1"');
eval('document.getElementById("' + idCell_two + '").style.background = "#E0DEF1"');
}

function preload(){
	if (document.images) { 
		var imgsrc = preload.arguments;
		arr=new Array(imgsrc.length);
		for (var j=0; j<imgsrc.length; j++){
		arr[j] = new Image;arr[j].src = imgsrc[j];
		}
	}
}
//-->
