﻿function CreateFlashPlayerControl(DivID, objectDataField)
{
    var d = document.getElementById(DivID);
    d.innerHTML = '<object ' +
                  '    id="xspf_player" ' + 
                  '    type="application/x-shockwave-flash" ' +
                  '    data="' + objectDataField + '"> ' +
                  '    <param ' +
                  '        name="movie" ' +
                  '        value="' + objectDataField + '" /> ' +
                  '    <param ' +
                  '        name="bgcolor" ' +
                  '        value="#cecec5" /> ' +
                  '<br /></object>';
}
function CreateFlashVideoPlayerControl(DivID, flashobjectUrl, width, height, flashVars)
{
    var d = document.getElementById(DivID);
    d.innerHTML = '<embed ' +
                  '    src="' + flashobjectUrl + '" ' + 
                  '    width="' + width + '" ' +
                  '    height="' + height + '"  ' +
                  '    bgcolor="#FFFFFF" ' +
                  '    type="application/x-shockwave-flash" ' +
                  '    pluginspage="http://www.macromedia.com/go/getflashplayer" ' +
                  '    flashvars="' + flashVars + '" ' +
                  '/>';
}
