// Aufruf von Kartensystem, z.B. google-maps
// KN, 06.10.2011
function maps (ort,plz,strasse) {
var surl = "http://maps.google.de/maps?q=";
surl += ort;
if (plz!="")
	surl += "+" + plz;
surl += "+" + strasse + "&gl=de&t=m&z=16";
//window.alert(surl);
window.open(surl);
}

//template:
//	<a class="extern" href="javascript:maps('ort','plz', 'strnr')">Karte<img src="images/btn_linkex.gif" alt="extern" width="12" height="12" /></a>
//	javascript:maps('Bremerhaven','275', 'strnr')
