var countries = Array();
countries['bulgaria'] = false;
countries['croatia'] = false;
countries['czechia'] = true;
countries['france'] = true;
countries['italy'] = true;
countries['montenegro'] = false;
countries['slovenia'] = false;
countries['spain'] = true;
countries['turkey'] = false;
	
function showMap(country){
	var background = document.getElementById('background');
	var header = document.getElementById('headerbg');
	var flags = document.getElementById('flags');
	
	if(country != 'none'){
		if(countries[country])
			background.style.background = 'url(\'images/background-'+country+'.jpg\')';
		else 
			background.style.background = 'url(\'images/background-'+country+'_disabled.jpg\')';
		header.style.background = 'url(\'images/header-'+country+'.jpg\')';
	} else {
		background.style.background = '';
		header.style.background = '';
	}
}

function showLanguage(language){
	var outputField = document.getElementById('language');
	outputField.innerHTML = language;
}