// JavaScript Document
document.observe("dom:loaded", function() {
    var winheight = parseInt(document.documentElement.scrollHeight)
    var boheight = parseInt(document.body.scrollHeight)
    var browser=navigator.appName;
    var b_version=navigator.appVersion;
    var version=parseFloat(b_version);
    if(browser=="Microsoft Internet Explorer" && version <= 6) {
    
      if (winheight >= boheight)
      {
          width = document.body.offsetWidth;
          $("top").style.width = width;
          $("bottom").style.width = width-19;
      }
        else if (winheight < boheight)
      {
          width = document.body.offsetWidth;
          $("top").style.width = width-19;
          $("bottom").style.width = width-19;
      }
    }
});
