/*
geminiCMS4_3 - The Tell Projekt: Tell Document Portal
(c)2007 by Frank Reimering Software Systems
anfahrt.js
*/

function showAnfahrt() {
    startLoading();
    new Ajax.Request(
        "Core/backend/Anfahrt/anfahrt.php",
        {
           parameters: 'asynchronous=false',
           method: 'post',
           postBody: 'cmd=anfahrt&what=content',
           /*
           onSuccess: function(req) {
           },
           */
           onComplete: function(req) {

                $("content").innerHTML = req.responseText;
                stopLoading();
                loadGoogleMap();


           },
           onError: function() {
                showMessage("Es trat ein Fehler bei der Daten&uuml;bertragung auf.");
           }
        }
    )
}

