function setCountry(dropbox, template){
	new Ajax.Updater('maps', '/codeblue/inc_dealerlijst.php', {onLoading:function(request){Element.show('indicator2')}, onComplete:function(request){Element.hide('indicator2')}, parameters:'action=setMaps&type=0&template=' + template + '&country=' + dropbox.value, evalScripts:true, asynchronous:true})
}

function setCountryHenra(country, template, lat, long, kml, zoom){
	document.getElementById('Belgie').style.background = 'none';
	document.getElementById('Belgie').style.color = '#666';
	
	document.getElementById('Denemarken').style.background = 'none';
	document.getElementById('Denemarken').style.color = '#666';
	
	document.getElementById('Duitsland').style.background = 'none';
	document.getElementById('Duitsland').style.color = '#666';
	
	document.getElementById('Finland').style.background = 'none';
	document.getElementById('Finland').style.color = '#666';
	
	document.getElementById('Frankrijk').style.background = 'none';
	document.getElementById('Frankrijk').style.color = '#666';
	
	document.getElementById('Nederland').style.background = 'none';
	document.getElementById('Nederland').style.color = '#666';
	
	document.getElementById('Noorwegen').style.background = 'none';
	document.getElementById('Noorwegen').style.color = '#666';
	
	document.getElementById('Oekraine').style.background = 'none';
	document.getElementById('Oekraine').style.color = '#666';
	
	document.getElementById('Oostenrijk').style.background = 'none';
	document.getElementById('Oostenrijk').style.color = '#666';
	
	document.getElementById('Spanje').style.background = 'none';
	document.getElementById('Spanje').style.color = '#666';
	
	document.getElementById('Zweden').style.background = 'none';
	document.getElementById('Zweden').style.color = '#666';
	
	document.getElementById('Zwitserland').style.background = 'none';
	document.getElementById('Zwitserland').style.color = '#666';
	
	document.getElementById('' + country + '').style.background = '#CC0000 url(/img/country.jpg) no-repeat center right';
	document.getElementById('' + country + '').style.color = '#FFF';
	new Ajax.Updater('jmaps', '/codeblue/inc_dealerlijst.php', {onLoading:function(request){Element.show('indicator2')}, onComplete:function(request){Element.hide('indicator2')}, parameters:'action=setMapsHenra&type=0&template=' + template + '&country=' + country + '&kml=' + kml + '&long=' + long + '&lat=' + lat + '&zoom=' + zoom, evalScripts:true, asynchronous:true})
}