﻿function checkCountryForm() {
	var selectedCountry = jQuery('#country_selector option:selected').attr('value');
	if(selectedCountry) {
		if(jQuery('#countryinfoform .radio input:checked').attr('value') != 'guide') {
			jQuery('#country_selector option:selected').attr('value', selectedCountry.split('|')[0]);
		} else {
			jQuery('#countryinfoform').attr('action', '/reisefuehrer.html?tg_country_code=' + selectedCountry.split('|')[1]);
		}
		return true;
	}
	return false;
}

function openCountry(countryValue) {
	$('#tx_countryinfo').attr('value',countryValue);
	$('#countryinfoform').submit();
}

function openCountryInfo( countryValue ) {
	$('#country_selector').attr('value',countryValue);
	$('#country_show').attr('value','info'); // info or guide
	$('#countryinfoform').submit();
}
