//
// (c) 2006 webActive group
//

function resizeWindow()
{
	var windowWidth = (isIE() ? document.body.offsetWidth : window.innerWidth);
    var windowHeight = (isIE() ? document.body.offsetHeight : window.innerHeight);
  
    $('ContentsContainer').style.height = null;
    $('Contents').style.height = null;
    
    var contentWidth = $('ContentsContainer').offsetWidth;
    var contentHeight = $('ContentsContainer').offsetHeight;
    var HeaderFooterHeight = $('Header').offsetHeight + $('Footer').offsetHeight;
    
    $('ContentsContainer').style.height = Math.max(contentHeight, windowHeight) + 'px';
    $('Contents').style.height = ($('ContentsContainer').offsetHeight - HeaderFooterHeight) + 'px';
    if ($('RightPurpleSomething') != undefined)
      $('RightPurpleSomething').style.height = Math.max($('Contents').offsetHeight, $('RightPurpleSomething').offsetHeight, $('news').offsetHeight) + 'px';
   
}

