﻿// JScript File

if (hasRequiredFlashVersion){
   if (fmenu ==null) var fmenu=true;
    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="'+fmwidth+'" height="'+fmheight+'" id="'+fmname+'" align="'+fmalign+'"'
    + 'codebase="swflash.cab#version=8,0,0,0">'
    + '<param name="allowScriptAccess" value="sameDomain" />'
    + '<param name="allowFullScreen" value="true" />'
    + '<param name="menu" value="'+fmenu+'" />'
    + '<param name="scale" value="noscale" />'
    + '<param name="movie" value="'+fmurl+'" />'
    + '<param name="quality" value="high" />'
    + '<param name="wmode" value="transparent" />'
    + '<param name=FlashVars value="'+FlashVars+'"/>'
    + '<embed src="'+fmurl+'" '
    + 'FlashVars="'+FlashVars+'" '
    + 'quality="best" wmode="transparent" width="'+fmwidth+'" height="'+fmheight+'"  scale="noscale" '
    + 'name="'+fmname+'" align="'+fmalign+'" allowScriptAccess="sameDomain" '
    + 'allowFullScreen="true" '
    + 'menu="'+fmenu+'" '
    + 'type="application/x-shockwave-flash" '
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer" />'
    + '<\/object>';
    document.write(oeTags);
  } else {
    document.write(alternateContent);
  }

