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="760" height="175" id="filmstripr" align="middle">' +
'<param name="allowScriptAccess" value="always" />' +
'<param name="movie" value="filmstripr.swf" />' +
'<param name="quality" value="high" />' +
'<param name="FlashVars" value="filename=' + filename + '" />' +
'<param name="bgcolor" value="#ffffff" />' +
'<embed src="filmstripr.swf" FlashVars="filename=' + filename + '" quality="high" bgcolor="#ffffff" width="760" height="175" name="filmstripr" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />' +
'</object>';

var alternateContent = '<map name="Map">' +
'<area href="index.html" coords="111,127,151,144" shape="rect" />' +
'<area href="aboutus.html" coords="156,126,222,145" shape="rect" />' +
'<area href="products.html" coords="228,127,291,145" shape="rect" />' +
'<area href="contactus.html" coords="305,127,380,146" shape="rect" />' +
'<area href="portfolio.html" coords="386,127,445,146" shape="rect" />' +
'<area href="specialpromotions.html" coords="456,127,585,145" shape="rect" />' +
'<area href="services.html" coords="592,127,653,144" shape="rect" /></map>' +
'<img height="159" alt="" width="760" usemap="#Map" border="0" src="http://www.americanavca.com/images/index_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
}
