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="800" height="309" id="banner" align="middle">' +
'<param name="allowScriptAccess" value="always" />' +
'<param name="movie" value="banner2.swf" />' +
'<param name="quality" value="high" />' +
'<param name="bgcolor" value="#000000" />' +
'<embed src="banner2.swf" bgcolor="#000000" width="800" height="309" name="banner" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />' +
'</object>';

var alternateContent = '<map name="FPMap0">' +
'<area href="roster.htm" coords="396, 270, 478, 303" shape="rect">' +
'<area href="questionnaire.htm" coords="163, 270, 378, 301" shape="rect">' +
'<area href="http://longwoodwrestling.com/" coords="27, 271, 137, 302" shape="rect">' +
'<area href="history.html" shape="rect" coords="505, 270, 588, 304">' +
'<area href="halloffame.html" shape="rect" coords="613, 271, 728, 304"></map>' +
'<img style="width: 800px; height: 309px" height="309" alt="" width="800" usemap="#FPMap0" border="0" src="images/index2_01.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
}
