   function resizeContainer() {
      if (document.getElementById) {
         s1obj = document.getElementById('content').style;
         if (document.body.clientWidth) {
            s1obj.width = (document.body.clientWidth>1275) ? "1275px" : "100%";
         }
      }
   }

   window.onload = function() {
      resizeContainer();
   }

   window.onresize = function() {
      resizeContainer();
   }