function showInformers(TOP_RIGHT_BLOCK)
{

         var req = new JsHttpRequest();
         req.onreadystatechange = function() {
             if (req.readyState == 4) {
                 document.getElementById('pageTop').innerHTML = req.responseText;
             }
         }

         req.open('POST', '/ajax/news/ajaxPageTop.php', true);
         req.send( { TOP_RIGHT_BLOCK: TOP_RIGHT_BLOCK } );
}

function showInformersWithoutSotka(myplashka, myTOP_LINK)
{

         var req = new JsHttpRequest();
         req.onreadystatechange = function() {
             if (req.readyState == 4) {
                 document.getElementById('pageTop').innerHTML = req.responseText;
             }
         }

         req.open('POST', '/ajax/news/ajaxColumnPageTop.php', true);
         req.send( { plashka : myplashka, TOP_LINK : myTOP_LINK } );


}


function showLeftMenu()
{
         showLeftMenu_part1();
         showLeftMenu_part2();
}

function showLeftMenu_part1()
{
         var req = new JsHttpRequest();
         req.onreadystatechange = function() {
             if (req.readyState == 4) {
                 document.getElementById('leftMenu_part1').innerHTML = req.responseText;
             }
         }
         
         req.open('POST', '/ajax/news/ajaxMenuCellsNews.php', true);
         req.send( null );
}

function showLeftMenu_part2()
{
         var req = new JsHttpRequest();
         req.onreadystatechange = function() {
             if (req.readyState == 4) {
                 document.getElementById('leftMenu_part2').innerHTML = req.responseText;
             }
         }
         
         req.open('POST', '/ajax/news/ajaxMenuCellsNews_part2.php', true);
         req.send( null );
}

