function mOvrAlpha(src,rw){
        if (lastSrc) lastSrc.style.background='';
        src.style.background='white';
        src.style.cursor='hand';
	src.title="Click to Select";
        lastSrc=src;
	letterChoice=rw;
}
function AlphaMouseOut(){  
	if (lastSrc) {
		lastSrc.style.background='';
		}
	}

function AlphaMouseClick(){
	if (lastSelectedSrc!=lastSrc){
		if (lastSelectedSrc) lastSelectedSrc.style.color="Black";
		lastSrc.style.color="yellow";
		form1.text1.focus();
		form1.text1.value=letterChoice;
		laststr=letterChoice;
		top.RecordPage.location.reload();
		lastSelectedSrc=lastSrc;
		}
	}

var lastSrc,letterChoice;
var lastSelectedSrc=startSelect;