/*
  Datei:        $RCSfile:  $
  Revision:     $Revision:  $ / $Name:  $
  Last-Checkin: $Date:  $ / $Author: falk $
  CVS-ID:       $Id:  $
  Creator:      Falk Pruefer
*/

function doOnload()
{
  return doOnresize();
}

function doOnresize()
{
  var marginOffs = 45;
  var borderOffs = 0;
  var dims = getWindowDims();
  //alert('X: ' + dims.X + ', Y: ' + dims.Y);
  var topFrame = document.getElementById('head');
  var bottomFrame = document.getElementById('footer');
  var mainBody = document.getElementById('bodyMain');
  if (mainBody && topFrame && bottomFrame && (dims.Y > 0)) {
    //alert('topHeight: ' + topFrame.offsetHeight);
    mainBody.style.height = (dims.Y - topFrame.offsetHeight - bottomFrame.offsetHeight - marginOffs - borderOffs) + 'px';
  }
}

window.onresize = doOnresize;
