<!-- script opens radio button choice on submit -->
<!--
function gothere(theOption)
{
	var theURL;
	var theField;
	
	theField = document.forms[0].R1;
	theURL = uf_getRadioValue(theField);
	
	if (theURL == "")
	{
	  	alert("Please click your selection again, then click the button")
	}
	else
	{
		if (theOption == "1")
		{
			window.location.href=theURL;
		}
		else
		{
			uf_open_small_win(theURL);
		}
	}
}

//-->

<!--
function uf_getRadioValue(theField)
{
	var newValue;
	var oradio;
	var newLength;
	var theField;
	
	newValue = "";
	
	oradio = theField;
	newLength = oradio.length;
	
	for (var i = 0; i < newLength; i++)
	{
		if (oradio[i].checked)
		{
			newValue = oradio[i].value;
			break;
		}
	}
	
	return newValue;
}
//-->

<!--
function uf_open_small_win(theURL)
{
  	var win;
  	
   win = window.open(theURL,
   		"win",
   		"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=600,left=50");
 }
//-->