function rshr_set_location(location, country, region, areaofoperation, suitability, language) {
	rshr_jobsearch_ajax_locationselect(location, country, region, areaofoperation, suitability, language);
} // end rshr_set_location

function rshr_show_map() {
	document.getElementById('map_locations').style.display = 'block';
} // end rshr_show_map

function rshr_close_map() {
	if (document.getElementById('map_locations')) {
		document.getElementById('map_locations').style.display = 'none';
	}
} // end rshr_close_map

function rshr_map_international(id) {
	var select = document.getElementById('map-international-countryselect');
	if (select.value) {
		var movie = rshr_find_flash(id);
		if (movie) {
			movie.SetVariable('selected', select.value);
		}
	}
} // end rshr_map_international
