// JavaScript Document
function switchMap(strCountry)
{
	document.getElementById('mapImg').src = 'worldmap/'+ strCountry +'.jpg';
}

function resetMap()
{
	document.getElementById('mapImg').src = 'worldmap/map.jpg';
}
