// ** --- naming convention: ---** //

// set a hidden input actInd to certain value, txtVal and submit the form,frmName.
function DisplayDetail(frmName, txtVal, actionType)
{
	
	frmName.actInd.value = txtVal;		
	GLnavigateWithForm(frmName,actionType)
	
}


