/*################# Laender Map #################*/

var box;
var win;
var this_win;
var image;
var land;
var this_land;
var image_path = "fileadmin/templates/images/map/";

function open_window(win) {
	if (this_win) {
		box = document.getElementById(this_win);
		box.style.visibility = "hidden";
		box.style.display = "none";
	}
	
	box = document.getElementById(win);
    box.style.visibility = "visible";
	box.style.display = "inline";
	this_win = win;
}

function close_window() {
	box = document.getElementById(this_win);
	box.style.visibility = "hidden";
	box.style.display = "none";
}

function map(land, cli) {
	map_over = document.getElementById("img_map");
	
	if(this_land && land == "europa") {
		land = this_land;
		image = image_path+land+".gif";
	}
	
	if(cli) {
		this_land = land;
	}
	
	image = image_path+land+".gif";
	
	map_over.setAttribute("src", image)
}

window.onload = function () {
 open_window('de');
 map('deutschland', 'true');
}


