function GetradioSelection(radioButtonGroup)
{
	// Loop from zero to the one minus the number of radio button selections
	if (radioButtonGroup.length == null)//If a single radioButton exists, there is no array.  Just return the value from it.
	{
		return radioButtonGroup.value;
	}
	for (index = 0; index < radioButtonGroup.length; index++)
	{
		if (radioButtonGroup[index].checked)
		{
			return radioButtonGroup[index].value;
		}
	}

}
function GetradioSelectionApproval(radioButtonGroup)
{
	// Loop from zero to the one minus the number of radio button selections
	if (radioButtonGroup.length == null)//If a single radioButton exists, there is no array.  Just return the value from it.
	{
		return radioButtonGroup.approvalValue;
	}
	for (index = 0; index < radioButtonGroup.length; index++)
	{
		if (radioButtonGroup[index].checked)
		{
			return radioButtonGroup[index].approvalValue;
		}
	}

}

function GetradioSelectionStatus(radioButtonGroup)
{
	// Loop from zero to the one minus the number of radio button selections
	if (radioButtonGroup.length == null)//If a single radioButton exists, there is no array.  Just return the value from it.
	{
		return radioButtonGroup.statusValue;
	}
	for (index = 0; index < radioButtonGroup.length; index++)
	{
		if (radioButtonGroup[index].checked)
		{
			return radioButtonGroup[index].statusValue;
		}
	}

}

function goBack()
{
alert('test');
   parent.window.history.go(-1);
}

