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";
}

function colorRemediesLink(sTitle) {
	return "<td style=\"text-align: right; \"><a href=\"colorsInHomeopathyLists.htm\" " +
		"style=\"text-decoration: none; font-size: 1.25em; \"><b>" + sTitle + "</b></a></td>";
}
