<!-- 
function druck()
{
  window.print()
}

var win1;
function fenster1auf()
{
	w=640;
	h=600;
	left_pos=Math.ceil(screen.width/2)-Math.ceil(w/2);
	top_pos=Math.ceil(screen.height/2)-Math.ceil(h/2);
	win1=window.open("karte_frw.htm","Fenster1","width="+w+",height="+h+",resizable=yes,scrollbars=yes,toolbar=yes,left="+left_pos+",top="+top_pos);
   	win1.focus();
}
// -->