function resize(){
  var width = 0;
  width = document.body.clientWidth;
  var page = document.getElementById('mainTable');
  if (width<1100){
        page.style.width ="1010px";
    }else{
        page.style.width ="";
    }
  
}
