function HomeAnim()
{
	document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"949\" height=\"444\" wmode=\"opaque\" id=\"AVHeader\" align=\"middle\">" + 
		"<param name=\"allowScriptAccess\" value=\"sameDomain\" />" + 
		"<param name=\"movie\" value=\"swf/HomeAnim.05142010.swf\" />" + 
		"<param name=\"quality\" value=\"high\" />" +
		"<param name=\"bgcolor\" value=\"#ffffff\" />" + 
		"<embed src=\"swf/HomeAnim.05142010.swf\" quality=\"high\" wmode=\"opaque\" bgcolor=\"#\" width=\"949\" height=\"444\" name=\"AVHeader\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />" + 
		"</object>");
}

function CheckFlashVer()
{
	var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	if (!hasRightVersion)
	{
	 // flash is too old or we can't detect the plugin
    var alternateContent = "<div id=\"noflash\">You must have Adobe Flash 8.0 or higher to run this page.  Please download the latest version of Flash.<br />"
   	+ "<p><a target=\"_blank\" href=\"http://www.macromedia.com/go/getflash/\"><img src=\"http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif\" alt=\"Get Flash\" border=0 /></a></p></div>";
    document.write(alternateContent);  // insert non-flash content
	}
	
	return hasRightVersion;
}
