// JavaScript Document
<!--
	// 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 defined in globals
	var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	
	
	// Check to see if a player with Flash Product Install is available and the version does not meet the requirements for playback
	if ( hasProductInstall && !hasReqestedVersion ) {
		
		var alternateContent = '<img src="images/interior_01.jpg" alt="Placeholder" width="560" height="301" />';
		document.write(alternateContent);  // insert non-flash content
	
	} else if (hasReqestedVersion) {
		// if we've detected an acceptable version
		// embed the Flash Content SWF when all tests are passed
		AC_FL_RunContent(
				'src','intro',
				'width','560',
				'height','320',
				"id", "intro",
				"quality", "high",
				"bgcolor", "#FFFFFF",
				"name", "intro",
				"allowScriptAccess","sameDomain",
				"type", "application/x-shockwave-flash",
				'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
				"pluginspage", "http://www.adobe.com/go/getflashplayer"
		);  
	} else {  // flash is too old or we can't detect the plugin
		var alternateContent = '<img src="images/interior_01.jpg" alt="Placeholder" width="560" height="301" />';
		document.write(alternateContent);  // insert non-flash content
	}
	// -->