function initialize() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("googlemap"));
		geocoder = new GClientGeocoder();
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());

		if (geocoder) {
			geocoder.getLatLng(
				'6235 Reith i. A. Kirchfeld 3',
				function(point) {
					if (!point) {
					} else {
						map.setCenter(point, 15);	
						var marker = new GMarker(point);
						map.addOverlay(marker);
						marker.openInfoWindowHtml('<b>Käserei Reith</b><br />Kirchfeld 3<br />6235 Reith i. A.<br /><br />Telefon: 0043 5337 62137<br />E-Mail: <a href="mailto:kaese-von@kaeserei-reith.at">kaese-von@kaeserei-reith.at</a><br />Internet: <a href="http://www.kaeserei-reith.at">www.kaeserei-reith.at</a>');
					}
				}
			);
		}
	

	}
/*    	var anchors = document.getElementsByTagName("a");
    	for (var i=0;i < anchors.length;i++) {
    		var anchor = anchors[i];
                if (anchor.rel == "external") {
                	anchor.target ="_blank";
                }
	}*/
	
}

