window.onload = initialize;

function initialize() {
    var so = new SWFObject("main.swf", 
                           "mainmovie", // id
                           "1010", // width
                           "780", // height
                           "9", // required version 
                           "#ffffff" // bgcolor
                           );
    
    so.addParam("wmode", "transparent");

    // avoids a cryptic warning in browser console 
    // caused by an empty style
    so.setAttribute("style", ";");

    // redirect users who complete the ExpressInstall upgrade
    //so.addParam("redirectUrl", "~");
    // redirect users who don't have the correct plug-in version
    //so.addParam("redirectUrl", "~");
    // variables passed into the movie
    //so.addVariable("flashVarText", 
    // "this is passed in via FlashVars for example only");

    so.write("moviecontainer");
}

