function get_page_height() 
{
   if ( document.body.clientHeight ) 
   {
      return document.body.clientHeight;
   } 
   else if ( window.innerHeight ) 
   {
      return window.innerHeight;
   } 
   else 
   {
      return 400;
   }
}

function get_page_width() 
{
   if ( document.body.clientWidth ) 
   {
      return document.body.clientWidth;
   } 
   else if ( window.innerWidth ) 
   {
      return window.innerWidth;
   } 
   else 
   {
      return 400;
   }
}

function init_scroll() 
{
   var h = (navigator.appName == 'Microsoft Internet Explorer' && navigator.userAgent.indexOf('MSIE 7') == -1) ? 206 : 206;
   var pheight = get_page_height();
   var pwidth = get_page_width();
   var logoW = 900;
   var logoH = 260;
/*
   document.getElementById( 'header' ).style.left = ((pwidth - logoW)/2) + 'px';
   document.getElementById( 'menuhor' ).style.left = ((pwidth - logoW)/2) + 'px';
   document.getElementById( 'content' ).style.left = ((pwidth - logoW)/2) + 'px';
*/
}

