/* Java-Script Dokument "Delta Bike Sports" */

function initload($topnavi, $subnavi){
	if($topnavi=="start"){
		//document.getElementById("div_flashbanner").innerHTML ='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="590" height="200">1<param name="movie" value="../swf/film_menu2.swf" /><param name="quality" value="high" /><embed src="../swf/film_menu2.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="590" height="200"></embed></object>';
	}
	if($topnavi=="kontakt" && $subnavi=="adresse"){
		googlemapsload();
	}
}



    function googlemapsload() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("googlemaps"));
		map.addControl(new GSmallMapControl());
        map.setCenter(new GLatLng(50.588128,8.481252), 13);
		var marker = new GMarker(new GLatLng(50.588128,8.481252));
		map.addOverlay(marker);
		var html="<strong>CRS medical GmbH</strong><br />Loherstraße 6<br />35614 Asslar";
		
		GEvent.addListener(marker,"click", function(){
			marker.openInfoWindowHtml(html);
		});
		
      }
    }

	function route_berechnen(){
		$von = document.getElementById('adresse_strasse').value+', '+document.getElementById('adresse_ort').value;
		$ziel = 'Loherstrasse 6, 35614 Asslar';
		$url = 'http://maps.google.de/maps?f=d&hl=de&geocode=&saddr='+$von+'&daddr='+$ziel;
		window.open($url, 'Route', 'width=960,height=700,scrollbars=yes');
	}
