function resetWidth(x) {
     var flash = document.getElementById(x);
     //document.write("hey!");
  
     // get browser width
     var win_width = window.innerWidth;
  
    if (win_width < 812) {
         flash.setAttribute("width", "812");
        //window.width = 812;
     } else {
         flash.setAttribute("width", "100%");
     }
 }


