//==================== google maps =============================
var sended = 'on';
var vestiging = "";

function initialize() {
  if (GBrowserIsCompatible()) {
    var map = new GMap2(document.getElementById("map"));
    var point = new GLatLng(51.572265,4.665772);
     
    map.setCenter(point, 14);
    var marker = new GMarker(point);
    map.addOverlay(marker);
    
    marker.openInfoWindowHtml('<span style="color: #000000; font-size: 12px;">Trivium Sport B.V.Adres:<br />Trivium 166<br />4873 LP Etten-Leur<br />T: 076 - 501 14 44</span>');
    
    geocoder = new GClientGeocoder();
    gdir = new GDirections(map, document.getElementById("directions"));

    GEvent.addListener(marker, "click", function() {
      marker.openInfoWindowHtml('<span style="color: #000000; font-size: 12px;">Trivium Sport B.V.Adres:<br />Trivium 166<br />4873 LP Etten-Leur<br />T: 076 - 501 14 44</span>');
    });
  }
}

function planRoute(lang) {

  routeForm = document.getElementById('frmRoute');
  
  startAddress = routeForm.frmAddress.value;
  startZip = routeForm.frmZip.value;
  startCity = routeForm.frmCity.value;

  if (GBrowserIsCompatible()) {
    if(sended == 'on'){ 
      var map = new GMap2(document.getElementById("map"));
      directionsPanel = document.getElementById("directions_div");
      directions = new GDirections(map, directionsPanel);

      directions.load("from: "+startAddress+", "+startCity+", "+startZip+" to: Trivium 166, Etten-Leur, 4873 LP");
      sended = 'off';
    }
    else{
      directions.load("from: "+startAddress+", "+startCity+", "+startZip+" to: Trivium 166, Etten-Leur, 4873 LP");
    }
  }

  printButton = document.getElementById('directions_print');
  
  printButton.style.display = 'block';
  printButton.innerHTML = "<a class='whiteLink' href='/printRoute.php?&lang="+lang+"&adres="+startAddress+"&city="+startCity+"&postcode="+startZip+"' target='_blank'><img src='/images/printBut.png' border='0' alt='Print uw route' /></a>";
  
}
