
function globalNavRedirect(cSelector)
{
	var selCountryList = document.getElementById(cSelector);
	var ActionUrl=selCountryList.options[selCountryList.selectedIndex].value; 

	// Save the users selection in webtrends
	dcsMultiTrack('WT.ti','Global Nav Selector redirect to country site','DCS.dcsuri',window.location,'WT.es',ActionUrl);

	window.location = ActionUrl;
}

