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

