﻿var flashvars = {};
    flashvars.width = '560';
    flashvars.height = '315';
    flashvars.stretching = 'fill';
    flashvars.fullscreen = 'true';
    flashvars.autostart = 'false';
var params = {};
    params.allowscriptaccess = 'always';
    params.allowfullscreen = 'true';
var attributes = {};

function createPlayer(movie, width, height) {
    $('div#video').innerHTML = "";
    flashvars.file = movie;
    swfobject.embedSWF('siteassets/swf/mediaplayer.swf', 'mainPlayer', '560', '315', '9.0.0', 'siteassets/swf/expressInstall.swf', flashvars, params, attributes);
    $('div#video').css("width", "560px").css("height", "315px");
}

function showSWF(file, width, height) {
    $('div#video').innerHTML = "";
    swfobject.embedSWF(file, 'mainPlayer', width, height, '9.0.0', 'siteassets/swf/expressInstall.swf', flashvars, params, attributes);
    $('div#video').css("width", width).css("height", height);
}
