﻿// JScript File
var ie4 = false; if(document.all) { ie4 = true; }

function getobject(id) { 
  if (ie4) {   
    return document.all[id];
  }else { 
    return document.getElementById(id); 
  }
}

function viewSize(){
  if (document.all){
    width_screen = window.screen.availWidth;
    height_screen = window.screen.availHeight;
       
    if(width_screen>1200){         
      getobject("HeaderFlash").width = "985";
      getobject("HeaderFlash").height = "350";
      getobject("TablaS").style.width = "1029px"
    }else{        
      getobject("TablaS").style.width = "766px"
    }  
  }  
}
