// JavaScript Document
function JAWeather_ShowError() {
	if($('wrong_data_weather')) {
		$('wrong_data_weather').removeClass('weather-alert-off');
		$('wrong_data_weather').addClass('weather-alert-on');
	}
}
function JAWeather_HideError() {
	$('old_location').value = $('location').value;
	if($('wrong_data_weather')) {
		$('wrong_data_weather').removeClass('weather-alert-on');
		$('wrong_data_weather').addClass('weather-alert-off');
	}
}