


function readAndChangeBorderColor() {
	if(document.getElementById('mainRight') != null) {
	var obj = document.getElementById('mainRight').getElementsByTagName("td");
	for(var i=0;i<obj.length;i++) {
		
		if(obj[i].getAttribute('bgcolor').toUpperCase() == "#9BB3A7") {
			//obj[i].removeAttribute('bgcolor');
			obj[i].setAttribute('bgcolor','#07563f');
			//obj[i].setAttribute('height','10');
			//obj[i].style.bgColor = "red !important";
			obj[i].height = "1px";
			obj[i].bgColor = "#07563f";
		}
	}
	}
}

readAndChangeBorderColor();	