function new_windowmap(adr)
{
	var url = adr ;
	
	fenster=window.open(url, "leschke_map", "scrollbars,resizable=yes,menubar=yes,toolbar=yes,location=yes,width=1000,Height=650,left=0,top=0")
	fenster.focus();
}

function new_windowpopup(adr)
{
	var url = adr ;
	
	fenster=window.open(url, "leschke_popup", "resizable=yes,menubar=yes,toolbar=yes,location=yes,width=900,Height=650,left=0,top=0,dependent=yes")
	fenster.focus();
}