/**  
  insertPlayer.js
  Workaround for IE changes due to Eolas/Microsoft Patent Infringement 
  ActiveX Patch.
**/

function insertPlayerFlash2(elmID, src, width, height, flashID) {
  var html;
  html = "<OBJECT CLASSID='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' "
    + "CODEBASE='http://active.macromedia.com/flash5/cabs/swflash.cab#version=5,0,0,0' "
    + "ID=" + flashID + " WIDTH='" + width + "' HEIGHT='" + height + "'> "
    + "<PARAM NAME='movie' VALUE='" + src + "'> "
    + "<PARAM NAME='play' VALUE='true'> "
    + "<PARAM NAME='loop' VALUE='false'> "
    + "<PARAM NAME='quality' VALUE='high'> "

    // Embed for Netscape type Browsers
    + "<embed type='application/x-shockwave-flash' "
    + "pluginspage='http://www.macromedia.com/go/getflashplayer' "
    + "src='" + src + "' "
    + "name='FlashPlayer1' "
    + "width='" + width + "' "
    + "height='" + height + "' "
    + "play='true' "
    + "loop='false' "
    + "quality='high' "

    + "</OBJECT>";

  document.getElementById(elmID).innerHTML = html;
}

function insertPlayerFlash1(elmID, src, width, height, flashID) {
  var html;
  html = "<OBJECT CLASSID='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' "
    + "CODEBASE='http://active.macromedia.com/flash5/cabs/swflash.cab#version=5,0,0,0' "
    + "ID=" + flashID + " WIDTH='" + width + "' HEIGHT='" + height + "'> "
    + "<PARAM NAME='movie' VALUE='" + src + "'> "
    + "<PARAM NAME='play' VALUE='true'> "
    + "<PARAM NAME='loop' VALUE='true'> "
    + "<PARAM NAME='quality' VALUE='high'> "

    // Embed for Netscape type Browsers
    + "<embed type='application/x-shockwave-flash' "
    + "pluginspage='http://www.macromedia.com/go/getflashplayer' "
    + "src='" + src + "' "
    + "name='FlashPlayer1' "
    + "width='" + width + "' "
    + "height='" + height + "' "
    + "play='true' "
    + "loop='true' "
    + "quality='high' "

    + "</OBJECT>";

  document.getElementById(elmID).innerHTML = html;
}

function insertPlayerFlash0(elmID, src, width, height, flashID) {
  var html;
  html = "<OBJECT CLASSID='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' "
    + "CODEBASE='http://active.macromedia.com/flash5/cabs/swflash.cab#version=5,0,0,0' "
    + "ID=" + flashID + " WIDTH='" + width + "' HEIGHT='" + height + "'> "
    + "<PARAM NAME='movie' VALUE='" + src + "'> "
    + "<PARAM NAME='play' VALUE='false'> "
    + "<PARAM NAME='quality' VALUE='high'> "

    // Embed for Netscape type Browsers
    + "<embed type='application/x-shockwave-flash' "
    + "pluginspage='http://www.macromedia.com/go/getflashplayer' "
    + "src='" + src + "' "
    + "name='FlashPlayer0' "
    + "width='" + width + "' "
    + "height='" + height + "' "
    + "play='false' "
    + "loop='false' "
    + "quality='high' "

    + "</OBJECT>";

  document.getElementById(elmID).innerHTML = html;
}
