<!--
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
	if (AC_FL_RunContent == 0) {
		alert("This page requires AC_RunActiveContent.js. In Flash, run \"Apply Active Content Update\" in the Commands menu to copy AC_RunActiveContent.js to the HTML output folder.");
	} else {
		// embed the flash movie - rerun
		AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
			'width', '260',
			'height', '180',
			'src', 'basicsvideo2',
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'showall',
			'wmode', 'transparent',
			'devicefont', 'false',
			'id', 'basicsvideo2',
			'bgcolor', '#ffffff',
			'name', 'basicsvideo2',
			'menu', 'true',
			'allowScriptAccess','sameDomain',
			'movie', 'basicsvideo2',
			'salign', ''
			); //end AC code
	}
} else {  // flash is too old or we can't detect the plugin
	var alternateContent = '<p style="clear:both; margin:20px 10px 0 0px; color:#666; padding:10px; border: 1px solid #999; width:225px; float:right; display:inline; text-align:right;"><strong>Bus Basic Video</strong><br />You have an unsupported version of the Flash Player. To watch the video <a href="http://www.macromedia.com/go/getflash" target="_blank">click here</a> and download the current Flash Player.</p>';
	document.write(alternateContent);  // insert non-flash content
}
// -->