<!--

function changeImage(image_id,image_filename) {
	document.getElementById(image_id).src = image_filename;
}

function popup(seite,w,h) {
	var windowstyle = 'scrollbars=no,resizable=no,status=no,location=no,toolbar=no,directories=no,menubar=no,copyhistory=no,width=' + w + ',height=' + h;
	window.open(seite, '_blank', windowstyle);
	return false;
}

function extern(seite) {
	var status = "scrollbars=yes,resizable=yes,status=yes,location=yes,toolbar=yes,directories=yes,menubar=yes,copyhistory=yes";
	window.open(seite, '_blank', status);
	return false;
}
/*
function showInfo(nr1,nr2,top,left) {
	var div = "mapinfo_" + nr1;
	if(nr2 == -1) {
		document.getElementById(div).innerHTML = "";
		document.getElementById(div).style.display = "none";
	}
	else {
		document.getElementById(div).innerHTML = staedte[nr1][nr2];
		document.getElementById(div).style.top = top + "px";
		document.getElementById(div).style.left = left + "px";
		document.getElementById(div).style.display = "block";
	}
}
*/
function showInfo(id,nr,top,left,width) {
	var div = "mapinfo_" + id;
	if(nr == -1) {
		document.getElementById(div).innerHTML = "";
		document.getElementById(div).style.top = "0em";
		document.getElementById(div).style.left = "0em";
		document.getElementById(div).style.display = "none";
	}
	else {
		top = parseFloat(top);
		left = parseFloat(left);
		width = parseFloat(width);
		top = top + 1.7;
		left = left + width;
		document.getElementById(div).innerHTML = document.getElementById(nr).innerHTML;//staedte[nr];
		document.getElementById(div).style.top = top + "em";
		document.getElementById(div).style.left = left + "em";
		document.getElementById(div).style.display = "block";
	}
}

-->