function writeFairHomeFlash(source, width, height, place) {
	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= "'+width+'" height="'+height+'"><param name="movie" value="'+source+'" /><param name="quality" value="high" /><embed src= "'+source+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed></object>';
		document.write(fairHomeFlashTags);
	}
	else {
		// flash is too old or too new that we can't detect the plugin
		if (place == "header")
		{
			var fairHomeAlternateTags = '<img src="images/10_flash_static.gif" width="749" height="268" border="0" alt="Taste the Fun" />';
			document.write(fairHomeAlternateTags);
		}
		else if (place == "footer")
		{
			var fairHomeAlternateTags = '<img src="images/10_bottm_lights.gif" width="749" height="27" border="0" alt="Taste the Fun" />';
			document.write(fairHomeAlternateTags);
		}
			
	}
}