function showRemedies(row, col) {
	document.getElementById("0").style.display = "none";
	var sCell = "";
	for (r = 1; r <= 3; r++) {
		for (c = 1; c <= 9; c++) {
			sCell = String(r) + "," + String(c);
			document.getElementById(sCell).style.display = "none";
			document.getElementById("c" + sCell).style.border = "none";
		}
	}
	sCell = String(row) + "," + String(col);
	document.getElementById(sCell).style.display = "";
	document.getElementById("c" + sCell).style.border = "5px solid white";
}

function lastListUpdate() {
	return "Jan-2007";
}

function previousListUpdate() {
	return "Jun-2006";
}
