<!--
	// 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">');
		document.writeln('<PARAM NAME="MOVIE" VALUE="' + flashFilepath + '">');
		document.writeln('<PARAM NAME="QUALITY" VALUE="high">');
		document.writeln('<PARAM NAME="LOOP" VALUE="true">');
		document.writeln('<PARAM NAME="PLAY" VALUE="true">');
		document.writeln('<PARAM NAME="MENU" VALUE="false">');
		document.writeln('<EMBED SRC="' + flashFilepath + '"');
		document.writeln('WIDTH="' + flashWidth + '" HEIGHT="' + flashHeight + '""');
		document.writeln('PLAY="true"');
		document.writeln('LOOP="true"');
		document.writeln('QUALITY="high"');
		document.writeln('MENU="false"');
		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);
	}
// -->