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

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

  swfobject.embedSWF( "swf/SiteLoader.swf", "flash", "100%", "100%", "9.0.115", "swf/expressInstall.swf", flashvars, params, { id: "flashSite", name: "flashSite" });

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

});

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

function regulamento() {
  window.open("regulamento.html","regulamento","width=460,height=500,menubar=no,toolbar=no,location=no,status=no,scrollbars=yes");
}