function writeFairHomeFlash() {
	var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	// Check to see if the version meets the requirements for playback
	if (hasReqestedVersion) {
		// if we've detected an acceptable version
		var fairHomeFlashTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="566" height="247"><param name="movie" value="layouts/flash/DMF2009.swf" /><param name="quality" value="high" /><embed src="layouts/flash/DMF2009.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="566" height="247"></embed></object>';
		document.write(fairHomeFlashTags);
	}
	else {
		// flash is too old or too new that we can't detect the plugin
		var fairHomeAlternateTags = '<img src="images/09_temp_flash.jpg" width="566" height="247" border="0" alt="Music Mania" />';
		document.write(fairHomeAlternateTags);
	}
}