<!--
// js functions .. 

function dConfirm(msg, link) {
  if (confirm(msg)) window.location=link;
}

function show_hide_block(id) {
  c = document.getElementById(id);
  if (c.style.display == 'none')
    c.style.display = 'block';
  else
    c.style.display = 'none';
}

function address_to_latlang() {
  strasse = document.forms['inst'].strasse.value;
  plz = document.forms['inst'].plz.value;
  ort = document.forms['inst'].ort.value;
  if ((strasse.length == 0) || (plz.length == 0) || (ort.length == 0)) {
    alert('Strasse, PLZ und Ort müssen eingetragen sein!');
  } else {
    var geocoder = new GClientGeocoder();
    geocoder.getLatLng(
      strasse + ', ' + plz + ' ' + ort,
      function setLatLang(point) {
        if (!point) {
          document.forms['inst'].lat.value = "";
          document.forms['inst'].long.value = "";
          alert('Die Koordinaten konnten nicht ermittelt werden');
        } else {
          document.forms['inst'].lat.value = point.lat();
          document.forms['inst'].long.value = point.lng();
          alert('Die Koordinaten wurden erfolgreich ermittelt');
        }
      }
    );    
  }
}


//-->
