// JavaScript Document

function SelectRateLetter( NewLetter )	{
	currentCell = document.getElementById( "letter" + SelectedLetter );
	newCell = document.getElementById( "letter" + NewLetter );
	currentCell.className = "";
	newCell.className = "rateLetterOn";
	document.location = "/amx.php?A=Rates&RL=" + NewLetter;
	SelectedLetter = NewLetter;
}
