<!--
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=10,0,0,0',
		'width', '1050',
		'height', '850',
		'src', 'Cyanide140810',
		'quality', 'high',
		'pluginspage', 'http://www.adobe.com/go/getflashplayer',
		'align', 'middle',
		'play', 'true',
		'loop', 'true',
		'scale', 'noscale',
		'wmode', 'gpu',
		'devicefont', 'false',
		'id', 'Cyanide140810',
		'bgcolor', '#000000',
		'name', 'Cyanide140810',
		'menu', 'true',
		'allowFullScreen', 'false',
		'allowScriptAccess','sameDomain',
		'movie', 'Cyanide140810',
		'salign', 't'
		); //end AC code
} else {  // flash is too old or we can't detect the plugin
	var alternateContent = '<div style="position:absolute; width: 500px; left: 50%; margin-left: -250px; top: 50%; margin-top: -50px; color:#FFFFFF; font-size: 11px; font-family: arial; text-align: center">You do not have Adobe Flash Player 10 installed or your browser does not support Javascript.<br />To download the latest Adobe Flash Player <a href="http://www.adobe.com/go/getflashplayer/" style="color:#FFFFFF">Click Here</a>.</div>';
	document.write(alternateContent);  // insert non-flash content
}
// -->