function resizing()
{

  var mainbodyId = document.getElementById('mainbody');
  var centerColId = document.getElementById('centerCol');
  var leftcolId = document.getElementById('leftCol');
  var rightcolId = document.getElementById('rightCol');
  var topBannerId = document.getElementById('topBanner');

  if (self.innerWidth)
    {
    frameWidth = self.innerWidth;
    frameHeight = self.innerHeight;
    }
    else if (document.documentElement && document.documentElement.clientWidth)
      {
      frameWidth = document.documentElement.clientWidth;
      frameHeight = document.documentElement.clientHeight;
      }
      else if (document.body)
        {
        frameWidth = document.body.clientWidth;
        frameHeight = document.body.clientHeight;
        }

  if (frameWidth-(leftcolId.offsetWidth+rightcolId.offsetWidth-1)>=100)
    {
    centerColId.style.width = (frameWidth-(leftcolId.offsetWidth+rightcolId.offsetWidth+20))+'px';
    rightcolId.style.left = (frameWidth-leftcolId.offsetWidth)+'px';
    }

  centerColId.style.height = (leftcolId.offsetHeight-20)+'px';
  rightcolId.style.height = (centerColId.offsetHeight+0)+'px';
		
		
}

