var flashContent = '' +
'<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="750" height="186" id="journey" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="journey.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><embed src="journey.swf" quality="high" bgcolor="#000000" width="750" height="186" name="journey" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />' +
'</object>';

var alternateContent = '<map name="index_02_Map">' +
'<area alt="Bios and Photos" href="bios.html" coords="412,166,562,184" shape="RECT" />' +
'<area alt="Song List" href="song_list.html" coords="271,166,399,184" shape="RECT" />' +
'<area alt="Home" href="index.html" coords="182,166,260,184" shape="RECT" /></map>' +
'<img height="186" width="748" usemap="#index_02_Map" border="0" src="images/index_02.jpg" />';

// Version check based upon the values entered in "Globals"
var hasRequestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
			
// Check to see if the version meets the requirements for playback
if (hasRequestedVersion) {
	// if we've detected an acceptable version
	// embed the Flash Content SWF when all tests are passed
				
	document.write(flashContent);
				
} else {  // flash is too old or we can't detect the plugin
	
	document.write(alternateContent);  // insert non-flash content
}
