

/*
 * Opens the map of 'Schleswig-Holstein' in pop-up window
 */
function openPopUp(url) {
	win = window.open(url, "win", "width=800,height=600,status=yes,scrollbars=yes,resizable=yes");
	win.focus();
}
