function swfOutput(installURL_str,movieURL_str,movieWidth,movieHeight,movieID,quality,scale,wmode)
{
<!--
 // Variables to retrieve the FlashVars from a hidden input control set server-side
 /*
	var langID_str = document.forms['flashvars'].langID_txt.value;
	var navID_str = document.forms['flashvars'].navID_txt.value;
	var title_str = document.forms['flashvars'].title_txt.value;
 */
	// Version check for the Flash Player that has the ability to start Player Product Install (6.0r65)
	var hasProductInstall = DetectFlashVer(6, 0, 65);
	// Version check based upon the values defined in globals
	var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	// Check to see if a player with Flash Product Install is available and the version does not meet the requirements for playback
	if ( hasProductInstall && !hasReqestedVersion ) {
		// MMdoctitle is the stored document.title value used by the installation process to close the window that started the process
		// This is necessary in order to close browser windows that are still utilizing the older version of the player after installation has completed
		// DO NOT MODIFY THE FOLLOWING FOUR LINES
		// Location visited after installation is complete if installation is required
		var MMPlayerType = (isIE == true) ? "ActiveX" : "PlugIn";
		var MMredirectURL = window.location;
		document.title = document.title.slice(0, 47) + " - Flash Player Installation";
		var MMdoctitle = document.title; //title_str;
		AC_FL_RunContent(
						"align","middle",
						"allowScriptAccess","sameDomain",
						"FlashVars", "MMredirectURL="+MMredirectURL+'&MMplayerType='+MMPlayerType+'&MMdoctitle='+MMdoctitle+"",
						"id", "playerUpdate",
						"name", "playerUpdate",
						"pluginspage", "http://www.adobe.com/go/getflashplayer",
						"quality", quality,
						"scale",scale,
						"wmode",wmode,
						"src", installURL_str,
						"type", "application/x-shockwave-flash",
						"width", movieWidth,
						"height", movieHeight						
		                );
	} else if (hasReqestedVersion) {
		// If we've detected an acceptable version
		// Embed the Flash Content SWF when all tests are passed
		AC_FL_RunContent(
						"align","middle",
						"allowscriptaccess","sameDomain",
                        "codebase","http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0",
						"id",movieID,
						"movie",movieURL_str,
						"pluginspage","http://www.macromedia.com/go/getflashplayer",
						"quality",quality,
						"scale",scale,
						"wmode",wmode,
						"src",movieURL_str,
	                    "width",movieWidth,
						"height",movieHeight
		);	

	} else { // Flash is too old or we can't detect the plugin
	    // Attempt to access the plugin the old-fashioned way
		
		/*var alternateContent ='Alternate HTML content should be placed here.<BR>'
		+ 'This content requires the Adobe Flash Player. '
		+ '<a href=http://www.adobe.com/go/getflash/>Get Flash</a>';
		*/
		var alternateContent ='    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+movieWidth+'" height="'+movieHeight+'" id="'+movieID+'">' +
                              '      <param name="align" value="middle" />'+
                              '      <param name="allowScriptAccess" value="sameDomain" />'+
                              '      <param name="movie" value="'+movieURL_str+'.swf" />'+
                              '      <param name="quality" value="'+quality+'" />'+
                              '      <param name="scale" value="'+scale+'" />'+
                              '      <param name="wmode" value="'+wmode+'" />'+
                              '      <embed src="'+movieURL_str+'.swf" align="middle" allowScriptAccess="sameDomain" quality="'+quality+'" scale="'+scale+'" width="'+movieWidth+'" height="'+movieHeight+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="'+wmode+'" /></embed>'+
                              '    </object>'
		document.write(alternateContent);  // insert non-flash content
	}
// -->
}
