<!--
if (AC_FL_RunContent == 0 || DetectFlashVer == 0) {
	alert("This page requires AC_RunActiveContent.js.");
} else {
	var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	if(hasRightVersion) {  // if we've detected an acceptable version
		// embed the flash movie
		AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,14,0',
			'width', '700',
			'height', '450',
			'src', 'ross',
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'showall',
			'wmode', 'window',
			'devicefont', 'false',
			'id', 'ross',
			'bgcolor', '#787878',
			'name', 'ross',
			'menu', 'true',
			'allowScriptAccess','sameDomain',
			'allowFullScreen','false',
			'movie', '/ross',
			'salign', ''
			); //end AC code
	} else {  // flash is too old or we can't detect the plugin
var alternateContent = '<h3 style="color:#fff; font-family:arial, verdana, sans-serif;">You don&rsquo;t have the latest version of Macromedia Flash Player.</h3>'
			+ '<table width="700"><tr><td colspan="2"><p style="color:#fff; font-family:arial, verdana, sans-serif;">This web site makes use of <a href="http://www.macromedia.com/software/flash/" target="_new">Macromedia<sup style="font-size:70%">&reg;</sup>Flash<sup style="font-size:70%">TM</sup></a> software. You have an old version of Macromedia Flash Player that cannot play the content we&rsquo;ve created.</p></td></tr>'
			+ '<tr><td><a href="http://www.macromedia.com/go/getflashplayer"><img src="alternate.gif" border="0" width="88" height="31" alt=""></a></td><td><p style="color:#fff; font-family:arial, verdana, sans-serif;">Why not download and install the latest version now? It will only take a moment.</p></td></tr></table>'
			+ '<p style="color:#fff; font-family:arial, verdana, sans-serif;">Macromedia and Flash are trademarks of Macromedia, Inc.</p>';
			document.write(alternateContent);  // insert non-flash content
	}
}
// -->
