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