function getnation()
	{

	var nation_choice = document.ForwardReq.nation.options[document.ForwardReq.nation.selectedIndex].value;
	
	if (nation_choice != "none")
		{
			document.location = nation_choice + '.asp';
		}

	}

function getstate()
	{

	var state_choice = document.ForwardReq.state.options[document.ForwardReq.state.selectedIndex].value;

	if (state_choice != "none")
		{
			document.location = state_choice + '.asp';
		}

	}

function getcity()
	{
	var city_choice = document.ForwardReq.City.options[document.ForwardReq.City.selectedIndex].value;
	
	if (city_choice != "none")
		{
			document.location = city_choice + '.asp';
		}
	}
	
function gettp(UnitID)
	{
	var DestGeo = this.document.ForwardReq.CurrFile.value;

		if (UnitID > 0 && DestGeo == 'none')
		   document.location = '/ruc/rac/' + UnitID + '/default.asp';
		else 
		   document.location = '/ruc/rac/' + UnitID + '/' + DestGeo + '.asp';

	}
	
	
		