﻿//CMS-8341用JS

(function(){
  if(navigator.userAgent.indexOf("MSIE 6.0")==-1) return;
  var min_max_width = function(){
    var w = document.body.clientWidth;
    document.getElementById("tmp_main").style.width = w < 983? "985px" : w > 1405? "1405px" : "auto";
    document.getElementById("tmp_header").style.width = w < 983? "985px" : w > 1405? "1405px" : "auto";
    document.getElementById("tmp_footer").style.width = w < 983? "985px" : w > 1405? "1405px" : "auto";
  };

  attachEvent("onload" , min_max_width);
  attachEvent("onresize", min_max_width);
})();
