function underlineLetter(thisIn){
	thisIn.style.textDecoration="underline";
	thisIn.style.cursor="pointer";
}

function restoreLetter(thisIn){
	thisIn.style.textDecoration="none";
}


function updateRadioButton(thisIn, frmName){

	document.forms[frmName].CommonTaskChoice[thisIn].checked = true;
}	



function SubmitFrm(frmName){
	document.forms[frmName].submit();
}	