	// Place SWF File on the page
	//  - Set the width, height, bg color, swf file, and object name (for javascript use)
	//	- You can also set alternate content that will display instead of the swf (if a proper version of Flash is not detected)
	//  - VERSION INFO SHOULD COME FROM detect_flash.js
	function placeSWF (swfWidth, swfHeight, swfFile, swfBgColor) {
		var swfId			= swfFile; // Change this later if you wish to designate a different name to the swf
		
		// Alternate Content	
		var alternateContent = '';
		
		// Detect Flash and display it - or alternate content (defined above)
		var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
		if(hasRightVersion) {
			// if we've detected an acceptable version
			var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
			+ 'width="'+swfWidth+'" height="'+swfHeight+'" name="'+swfId+'" id="'+swfId+'" '
			+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
			+ '<param name="movie" value="'+swfFile+'" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="salign" value="t" /><param name="bgcolor" value="'+swfBgColor+'" />'
			+ '<embed src="'+swfFile+'" quality="high" scale="noscale" salign="t" bgcolor="'+swfBgColor+'" '
			+ 'width="'+swfWidth+'" height="'+swfHeight+'" name="'+swfId+'" align="top" swLiveConnect="true"'
			+ 'play="true"'
			+ 'loop="false"'
			+ 'quality="high"'
			+ 'allowScriptAccess="sameDomain"'
			+ 'type="application/x-shockwave-flash"'
			+ 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
			+ '<\/embed>'
			+ '<\/object>';
			document.write(oeTags); // write the flash	
		  } else {  // flash is too old or we can't detect the plugin
			document.write(alternateContent);  // insert non-flash content
		  }
	}