<!--

function cellSwitch(cellName, newColor, textColor) {
//	if (isIE) {
		cellName.bgColor = newColor;
//	}
	if (textColor != null) {
		cellName.style.color = textColor;
	}
}

function rowSwitch(thisCell, newColor, textColor) {
	i = 0;
	thisCell.bgColor = newColor;
	if (textColor != null) {
		thisCell.style.color = textColor;
	}
	rowsize = thisCell.parentNode.cells.length;
	while (i < rowsize) {
		thisCell.parentNode.cells[i].bgColor = newColor;
		if (textColor != null) {
			thisCell.parentNode.cells[i].color = textColor;
		}
		i ++;
	} 
}

function overIt(thisCell, newColor, textColor, linkText) {
	cellSwitch(cellName, newColor, textColor);
	window.status = linkText;
}

// -->

