								<!-- 
								// Version check for the Flash Player that has the ability to start Player Product Install (6.0r65)
								var hasProductInstall = DetectFlashVer(6, 0, 65);
								
								// Version check based upon the values entered above in "Globals"
								var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
								
								// Location visited after installation is complete if installation is required
								var MMredirectURL = window.location;
								
								// Stored value of document title used by the installation process to close the window that started the installation process
								// This is necessary to remove browser windows that will still be utilizing the older version of the player after installation is complete
								// DO NOT MODIFY THE FOLLOWING TWO LINES
								document.title = document.title;
								var MMdoctitle = document.title.slice(0, 47) + " - Flash Player Installation";
								
								// Check to see if a player with Flash Product Install is available and the version does not meet the requirements for playback
								if (hasReqestedVersion) {  // if we've detected an acceptable version
									var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
									+ 'width="150" height="500"'
									+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
									+ '<param name="movie" value="http://www.hepb.org/flash/navigation.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#4291D6" /><param name="menu" value="false" />'
									+ '<embed src="http://www.hepb.org/flash/navigation.swf" quality="high" bgcolor="#4291D6" '
									+ 'width="150" height="500" name="detectiontest" aligh="middle"'
									+ 'play="true"'
									+ 'loop="false"'
									+ 'quality="high"'
									+ 'menu="false"'
									+ 'allowScriptAccess="always"'
									+ 'type="application/x-shockwave-flash"'
									+ 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
									+ '<\/embed>'
									+ '<\/object>';
									document.write(oeTags);   // embed the Flash Content SWF when all tests are passed
								  } else {  // flash is too old or we can't detect the plugin
									var alternateContent = '<p>This site requires the Flash Player.<br /><a href="http://www.macromedia.com/go/getflash">Download it now for free</a>.</p><ul><li><a href="../hepb/index.htm">What is Hepatitis B?</a></li><li><a href="../diagnosis/index.htm">Diagnosis &amp; Management</a></li><li><a href="../living/index.htm">Living with Hepatitis B</a></li><li><a href="../treatment/index.htm">Treatment Options</a></li><li><a href="../prevention/index.htm">Prevention &amp; Vaccination</a></li><li><a href="../patients/support_groups.htm">Patient Support</a></li><li><a href="../researchers/index.htm">Research &amp; Education</a></li><li><a href="../faq/index.htm">Frequently Asked Questions</a></li><li><a href="../resources/index.htm">Resources &amp; Links</a></li><li><a href="../about/index.htm">About Us</a></li></ul><p>A <a href="sitemap/index.htm">Text Version</a> of the Hepatitis B Foundation the complete site navigation is also available.</p>';
									document.write(alternateContent);  // insert non-flash content
								  }
								// -->