// JavaScript Document

function internationalSearch(country, city) {
	if (city != 'na' ) {
		document.location = '/Global/' + country + '_' + city + '_office+space+to+rent_1.htm';
	}
}

function intLoadDropDowns(country) {
	var globalSelect = document.getElementById('global-drop');
	var tempcountry

	for(var i = 0; i < globalSelect.options.length; i++) {
		tempcountry = globalSelect.options[i].value;
		tempcountry = tempcountry.toLowerCase()

		if(tempcountry == country.toLowerCase()) {
			globalSelect.options[i].selected = true;
		}
	}

	LoadFeed('/includes/gl-city-drop.aspx?Country=' + document.getElementById('global-drop').value, 'glob-city', '&lt;p&gt;Loading Cities...&lt;/p&gt;', '');
}