// Auto compute the main section height:-)
var Layout={}
Layout.right=document.getElementById('rightBanners');
Layout.middle=document.getElementById('mainContent');
Layout.middleLong=document.getElementById('mainContentLong');
Layout.left=document.getElementById('leftContent');
Layout.main=document.getElementById('main');
Layout.compute = function()
{
  if(Layout.middleLong)
  {
    var height=Math.max(Layout.right.offsetHeight,Layout.middleLong.offsetHeight,1050);
    Layout.main.style.height=height+"px";
  }
  else
  {
    
    var height=Math.max(Layout.right.offsetHeight,Layout.left.offsetHeight,Layout.middle.offsetHeight,1050);
    Layout.main.style.height=height+"px";
  }
}
window.onload=Layout.compute;
