<!--

function tablesBorders() {

	var area = document.all.contentArea;
	var tablesArr = area.getElementsByTagName('table');
	var cellsLength;

	for (var a = 0, max1 = tablesArr.length; a < max1; a++) {

		if (tablesArr[a].className != 'table_1') {

			continue;

		}

		for (var b = 0, max2 = tablesArr[a].rows.length; b < max2; b++) {

			tablesArr[a].rows[b].cells[tablesArr[a].rows[b].cells.length - 1].style.borderRight = 0;

			if (tablesArr[a].rows[b].cells[0].nodeName.toLowerCase() != 'th' && cellsLength <= tablesArr[a].rows[b].cells.length) {

				tablesArr[a].rows[b].cells[0].style.textAlign = 'left';

			}

			cellsLength = tablesArr[a].rows[b].cells.length;

		}

	}

}

tablesBorders();

//-->