
function goToBooking(lang) {
	if (lang == "fr") {
		document.location = 'https://gc.synxis.com/rez.aspx?Hotel=20032&Chain=5460&locale=fr-FR';
	} else if (lang == "us") {
		document.location = 'https://gc.synxis.com/rez.aspx?Hotel=20032&Chain=5460&locale=en-US';
	} else if (lang == "es") {
		document.location = 'https://gc.synxis.com/rez.aspx?Hotel=20032&Chain=5460&locale=es-ES';
	} else if (lang == "de") {
		document.location = 'https://gc.synxis.com/rez.aspx?Hotel=20032&Chain=5460&locale=de-DE';
	} else if (lang == "ru") {
		document.location = 'https://gc.synxis.com/rez.aspx?Hotel=20032&Chain=5460&locale=ru-RU';
	} else {
		document.location = 'https://gc.synxis.com/rez.aspx?Hotel=20032&Chain=5460&locale=en-US';
	}
}
