﻿function createPlayer()
{
    var width = "370";
    var height = "286";

    html = "<object id=\"player\" classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"" + width + "\" height=\"" + height + "\" id=\"VideoPlayer\" align=\"middle\">";
    html += "<param name=\"allowScriptAccess\" value=\"sameDomain\" />";
    html += "<param name=\"wmode\" value=\"transparent\">";
    html += "<param name=\"movie\" value=\"VideoPlayer.swf\" />";
    html += "<param name=\"loop\" value=\"true\">";
    html += "<param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"#ffffff\" />";
    html += "<embed id=\"player\" wmode=\"transparent\" src=\"VideoPlayer.swf\" quality=\"high\" bgcolor=\"#ffffff\" width=\"" + width + "\" height=\"" + height + "\" name=\"VideoPlayer\" align=\"middle\" loop=\"true\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />";
    html += "</object>";
    
    document.write(html);
}
