
map_europe = new Image()
map_europe_austria = new Image()
map_europe_belgium = new Image()
map_europe_denmark = new Image()
map_europe_finland = new Image()
map_europe_france = new Image()
map_europe_germany = new Image()
map_europe_italy = new Image()
map_europe_luxemburg = new Image()
map_europe_netherland = new Image()
map_europe_norway = new Image()
map_europe_portugal = new Image()
map_europe_spain = new Image()
map_europe_sweden = new Image()
map_europe_switzerland = new Image()


map_europe.src = "images/map_europe.gif"
map_europe_austria.src = "images/map_europe_austria.gif"
map_europe_belgium.src = "images/map_europe_belgium.gif"
map_europe_denmark.src = "images/map_europe_denmark.gif"
map_europe_finland.src = "images/map_europe_finland.gif"
map_europe_france.src = "images/map_europe_france.gif"
map_europe_germany.src = "images/map_europe_germany.gif"
map_europe_italy.src = "images/map_europe_italy.gif"
map_europe_luxemburg.src = "images/map_europe_luxemburg.gif"
map_europe_netherland.src = "images/map_europe_netherland.gif"
map_europe_norway.src = "images/map_europe_norway.gif"
map_europe_portugal.src = "images/map_europe_portugal.gif"
map_europe_spain.src = "images/map_europe_spain.gif"
map_europe_sweden.src = "images/map_europe_sweden.gif"
map_europe_switzerland.src = "images/map_europe_switzerland.gif"



function load_image(country){
	if (country == "none") document.images[1].src=map_europe.src
	else if (country == "austria") document.images[1].src=map_europe_austria.src
	else if (country == "belgium") document.images[1].src=map_europe_belgium.src
	else if (country == "denmark") document.images[1].src=map_europe_denmark.src
	else if (country == "finland") document.images[1].src=map_europe_finland.src
	else if (country == "france") document.images[1].src=map_europe_france.src
	else if (country == "germany") document.images[1].src=map_europe_germany.src
	else if (country == "italy") document.images[1].src=map_europe_italy.src
	else if (country == "luxemburg") document.images[1].src=map_europe_luxemburg.src
	else if (country == "netherland") document.images[1].src=map_europe_netherland.src
	else if (country == "norway") document.images[1].src=map_europe_norway.src
	else if (country == "portugal") document.images[1].src=map_europe_portugal.src
	else if (country == "spain") document.images[1].src=map_europe_spain.src
	else if (country == "sweden") document.images[1].src=map_europe_sweden.src
	else if (country == "switzerland") document.images[1].src=map_europe_switzerland.src
}
