function loadSWFPlay(swf, playit)
{
    if (swfobject.hasFlashPlayerVersion("6")) {
        // check if SWF hasn't been removed, if this is the case, create a new alternative content container
        var c = document.getElementById("movie");
        if (!c) {
            var d = document.createElement("div");
            d.setAttribute("id", "movie");
            document.getElementById("movie-container").appendChild(d);
        }
        // create SWF
        var att = { data:swf, width:"320", height:"240" };
        var par = { menu:"true", play:playit };
        var id = "movie";
        swfobject.createSWF(att, par, id);

/*     var flashvars = {};
    var params = {};
    params.play="true";
    params.menu="true";
    params.allowfullscreen="true";
    params.allowscriptaccess="sameDomain";
    var attributes = {};
    swfobject.embedSWF(swf, "movie", "320", "240", "6", "expressInstall.swf", flashvars, params, attributes);
 */


    }
}
function loadSWF(swf)
{
swfobject.removeSWF("movie");
loadSWFPlay(swf, "true");
}
function setupMovies()
{
    var c = document.getElementById("movie");
  //  if (!c) {
        c.innerHTML="&nbsp;";
  //  }
}
