function onResize() {
  var flash = $('#flashSite');
  flash.width( $(window).width() < 1200 ? 1200 : '100%' );
  flash.height( $(window).height() < 700 ? 700 : '100%' );
}

$(document).ready(function() {
  var flashvars = {
    config: "xml/application.xml",
    debug: "false",
    basepath : ""
  };
              
  var params = {
    menu: "false",
    allowFullScreen: "true",
    allowScriptAccess: "always",
    allowNetworking: "all",
    bgcolor: "#6FA930"
  };

  swfobject.embedSWF("swf/Becel_new.swf", "content", "100%", "100%", "9.0.115", false, flashvars, params, {id:'flashSite', name:'flashSite'});

  if (!swfobject.hasFlashPlayerVersion('9'))
    window.location.href = 'noflash.html';
});

$(window)
  .resize(onResize)
  .load(onResize);