function writeHomeFlash() {
	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 homeFlashContent = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="714" height="410" id="tour" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="tour.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#bd8cbf" /><embed src="tour.swf" quality="high" bgcolor="#bd8cbf" width="714" height="410" name="tour" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';
		document.write(homeFlashContent);
	}
	else {
		// flash is too old or too new that we can't detect the plugin
		var homeAlternateContent = '';
		document.write(homeAlternateContent);
	}
}
