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="775" height="87" id="nav" align="middle">' +
'<param name="allowScriptAccess" value="always" />' +
'<param name="movie" value="Nav.swf" />' +
'<param name="quality" value="high" />' +
'<param name="wmode" value="opaque" />' +
'<param name="bgcolor" value="#000000" />' +
'<embed src="Nav.swf" quality="high" wmode="opaque" bgcolor="#000000" width="775" height="87" name="nav" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />' +
'</object>';

var alternateContent = '<map name="FPMap0" id="FPMap0">'+
'<area href="" shape="rect" coords="28, 520, 247, 563">'+
'<area href="" shape="rect" coords="251, 521, 640, 564">'+
'<area href="" coords="653, 521, 929, 562">'+
'</map><img alt="" src="alt_intro.jpg" width="950" height="570" border="0" usemap="#FPMap0">';

// 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
}
