function writeHomeFlash() {
	// Check to see if the version meets the requirements for playback
	if(DetectFlashVer(6,0,0)) {
		// if we've detected an acceptable version
		var flashHomeContent = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="363" height="648"><param name="movie" value="/images/home_flash.swf" /<param name="quality" value="high" /><param name="bgcolor" value="#FFFFFF" /><param name="wmode" value="transparent" /><embed src="/images/home_flash.swf" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="363" height="648"></embed></object>';
		// embed the Flash Content SWF when all tests are passed
		window.document.write(flashHomeContent);
	}
	else {
		// flash is too old or too new that we can't detect the plugin
		var alternateHomeContent = '<img src="/images/flash_placeholder.jpg" width="363" height="648" border="0" alt="" />';
		// insert non-flash content
		document.write(alternateHomeContent);
	}
}
