var oLastText;

function TextEnter(tText, tTextChangeTo)
{
   var texttochange = document.getElementById(tText);
   texttochange.className = tTextChangeTo;
   oLastText = texttochange
}

function TextExit(tTextChangeTo)
{
	oLastText.className = tTextChangeTo;
}
