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=8,0,24,0',
			'width', '530',
			'height', '325',
			'src', 'modelslider1',
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'showall',
			'wmode', 'transparent',
			'devicefont', 'false',
			'id', 'modelslider1',
			'bgcolor', '#333333',
			'name', 'modelslider1',
			'menu', 'true',
			'flashvars', 
		//Pass the brand model images and the model text file below into the flash.
		//Use variables in sequential order ie. If you have 3 models, Don't do: modelpic1, modelpic2, modelpic4
		//Be sure to match the variable numbers, don't have one model use modelpic3 for its picture and modeltxt1 for its text. No spaces allowed in variable list string.
		//Models will display in order, change the order of models by matching 
		//with the variable order i.e. To make a model that appeared 4th appear 2nd instead,
		//match it with the modelpic2 and modeltxt2 variables.
		//You can have up to 12 models. As long as they are in order, the flash will display them			
				'modelpic1=images/guru_photon_2010.jpg&modeltxt1=text/photon2010.txt&modelpic2=images/guru_evolo_2010.jpg&modeltxt2=text/evolo2010.txt&modelpic3=images/guru_crono2010.jpg&modeltxt3=text/crono2010.txt&modelpic4=images/guru_geneo_2010.jpg&modeltxt4=text/geneo2010.txt',
			'salign', ''
			); //end AC code
	} else {  // flash is too old or we can't detect the plugin
		var alternateContent = '<a href=http://www.macromedia.com/go/getflash/>'
			+ '<img src="images/gurumodels2010_noflash.gif" border="0" /></a>';
		document.write(alternateContent);  // insert non-flash content
	}
}