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

