var x = 1280;
var y = 1024;
document.write("<object");
document.write("  classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'");
document.write("  codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0'");
document.write("  width='" + x + "'");
document.write("  height='"+ y + "'");
document.write("  id='musa'");
document.write("  align='middle'>");
document.write("  <param name='allowScriptAccess' value='sameDomain' />");
document.write("  <param name='movie' value='flash/loading.swf' />");
document.write("  <param name='quality' value='high' />");
document.write("  <param name='scale' value='noscale' />");
document.write("  <param name='bgcolor' value='#FFFDE8' />");
document.write("  <embed src='flash/loading.swf'");
document.write("         quality='high'");
document.write("         bgcolor='#FFFDE8'");
document.write("         width='" + x + "'");
document.write("         height='" + y + "'");
document.write("         name='musa'");
document.write("         align='middle'");
document.write("         allowScriptAccess='sameDomain'");
document.write("         type='application/x-shockwave-flash'");
document.write("         pluginspage='http://www.macromedia.com/go/getflashplayer'");
document.write("  />");
document.write("</object>");
function adjust() {
  windowX = window.innerWidth;
  if (! windowX) {
    windowX = document.body.offsetWidth;
  }
  windowY = window.innerHeight;
  if (! windowY) {
    windowY = document.body.offsetHeight;
  }
  if (windowX < 900) {
    document.body.style.overflow = "auto";
  } else {
    document.body.style.overflow = "hidden";
  }
  window.scrollTo( (x - windowX) / 2, (y - windowY) / 2);
}
window.onload = adjust;
window.onresize = adjust;
