
function showCountry(countryCode) {

	front = document.getElementById('country_front');

	front.style.backgroundImage = 'url(gfx/country_' + countryCode + '.gif)';
/*url('gfx/country_back.gif'*/
	return false;
}

