function showWeather(table, section) {
//Function to hide all the weathers to be hidden and show the one to be shown
	table = document.getElementById(table);
	//hide all
	for (i=1;i<=table.childNodes.length;i++) {
		if ((table.childNodes[i]!=null) && (table.childNodes[i].tagName=="TR")) {
			//alert(table.childNodes[i].tagName + ": " + table.childNodes[i].id);
			if (table.childNodes[i].id != "") {
				hideshow(table.childNodes[i].id, "trigger_"+table.childNodes[i].id, 0)
				//table.childNodes[i].style.display = 'none';
			}
		}
	}
	showWeatherSection(section, section.substr(8));
	hideshow(section,"trigger_"+section,1);
	
}

function showWeatherSection(section, country) {
	makeRequest('/inc/weather_by_country.php?country='+country, section)
}
