//
// check if flash should be shown or not
//

var doflash = false;

var player = new MM_FlashInfo();
if (player.installed) {
  if (player.version && player.version >= 6) { // NEEDS FLASH VERSION 6 OR GREATER
    doflash = true;
  }
}

function writeflash() {
  if (doflash) {
    document.write("<div id='divflash'>");
    document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' id='ticker' width='707' height='51'>");
    document.write("<param name='movie' value='images/ticker.swf' /><param name='play' value='true' /><param name='loop' value='true' /><param name='quality' value='medium' /><param name='menu' value='false' /><param name='bgcolor' value='#FFFFFF' />");
    document.write("<embed src='images/ticker.swf' play='true' loop='true' quality='high' menu='false' bgcolor='#FFFFFF' swLiveConnect='false' width='707' height='51' name='homeflash' type='application/x-shockwave-flash'>");
    document.write("</embed></object></div>");
  }
  else {
    document.writeln("<div id='divflash'><img src='images/flashhalt.gif' width='707' height='51' border='0' alt='Mass Impact' title='' /></div>");
  }
}
