function showInformers()
{

         var req = new JsHttpRequest();
         req.onreadystatechange = function() {
             if (req.readyState == 4) {
                 document.getElementById('pageTop').innerHTML = req.responseText;
             }
         }

         req.open('POST', '/ajax/news/ajaxAnaliticPageTop.php', true);
         req.send( null );


}

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 );
}

function pressSearchTab(obj)
{
         
         document.getElementById('ts1').className='searchButOut';
         document.getElementById('ts2').className='searchButOut';
         document.getElementById('ts3').className='searchButOut';
         obj.className = 'searchButOver';

         if(obj.id == 'ts1')
         {
           sForm.action = '/search/';
         }

         if(obj.id == 'ts3')
         {
           sForm.action='/prints/';
           sForm.INDEX_DATA.value=sForm.q.value; 
         }
         
         if(obj.id == 'ts2')
         {
           sForm.action='/movies/';
           sForm.atext.value=sForm.q.value;
         }
}

