function last_updated() {
	/*
	For chang log please refer to docs/__history.txt
	*/
	document.write("<p align='right' style='color:#FFFFFF'>Updated on 09/26/2008 By SLG</p>");
}

function changeBG(cellId, newColor) {
	var cell;
	if (document.all) {
		cell = document.all[cellId];
	} else {
		cell = document.getElementById(cellId);
	}
	cell.bgColor = newColor;
}