
function goToURL(list) {

	var url = list.options[list.selectedIndex].value;
	
	if (url != '') {
		var label = list.options[list.selectedIndex].text;		
		var iPos = label.indexOf("*");						
		
		if (iPos == -1){	
			window.top.location.href = url;
		}
		else {
			var protocol = "http://";
			var type = '3';
			
			if (url.substr(0, protocol.length) == protocol) {
				type = '2';
			}
				
			sendto('US','no_brand', url, type);			
		}
	}
}

function stateProvince_onchange_gs(addressSource)
{
	var countryField = addressSource + "Country";
	var stateProvinceField = addressSource + "StateProvince";

	var countrySelectBox = document.forms["globalHomeForm"].elements[countryField];
	var stateSelectBox = document.forms["globalHomeForm"].elements[stateProvinceField];
  
	if ( stateSelectBox.selectedIndex == 0 )
	{
		countrySelectBox.selectedIndex = 0;
	}
  	else
  	{
    		countrySelectBox.value = "US";
  	}
}


function country_onchange_gs( addressSource )
{
  	var countryField = addressSource + "Country";
  	var stateProvinceField = addressSource + "StateProvince";

  	var countrySelectBox = document.forms["globalHomeForm"].elements[countryField];
  	var stateSelectBox = document.forms["globalHomeForm"].elements[stateProvinceField];
  
  	if ( countrySelectBox.value != "US" )
  	{
    		stateSelectBox.selectedIndex = 0;
  	}
}

