<!--
// Insert content into page

if(isRequiredFlashVersionInstalled) {
	document.write('<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write('WIDTH="' + flashWidth + '" HEIGHT="' + flashHeight + '"');
	document.write('CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0">');
	document.writeln('<PARAM NAME="MOVIE" VALUE="' + flashFilepath + '">');
	document.writeln('<PARAM NAME="QUALITY" VALUE="high">');
	document.writeln('<PARAM NAME="LOOP" VALUE="false">');
	document.writeln('<PARAM NAME="PLAY" VALUE="true">');
	document.writeln('<PARAM NAME="MENU" VALUE="false">');
	//document.writeln('<Param name="FlashVars" Value="menuXML_str=<cfoutput>#URLEncodedFormat(flashXML)#</cfoutput>">');
	document.writeln('<EMBED SRC="' + flashFilepath + '"');
	document.writeln('WIDTH="' + flashWidth + '" HEIGHT="' + flashHeight + '""');
	document.writeln('PLAY="true"');
	document.writeln('LOOP="false"');
	document.writeln('QUALITY="high"');
	document.writeln('MENU="false"');
	//document.writeln('FlashVars="menuXML_str=<cfoutput>#URLEncodedFormat(flashXML)#</cfoutput>"');
	document.writeln('TYPE="application/x-shockwave-flash"');
	document.writeln('PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">');
	document.writeln('</EMBED>');
	document.writeln('</OBJECT>');
	
} else {	// flash  version is too old or undetectable
	document.writeln(nonFlashHTML);
}


// -->