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', '800',
												'height', '400',
												'src', 'universal_portfolio2',
												'quality', 'high',
												'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
												'align', 'middle',
												'play', 'true',
												'loop', 'true',
												'scale', 'showall',
												'wmode', 'transparent',
												'devicefont', 'false',
												'id', 'portfolio',
												'bgcolor', '#ffffff',
												'name', 'portfolio',
												'menu', 'true',
												'allowScriptAccess','sameDomain',
												'allowFullScreen','false',
												'movie', 'universal_portfolio2',
												'salign', ''
												
												); //end AC code
												// the portfolio will request the xml data itself.
																							
										} else {  // flash is too old or we can't detect the plugin
											var alternateContent = '<p>Steve Marsel Studio galleries require Flash Player 8 and above.<br/>'
												+ '<a href=http://www.macromedia.com/go/getflash/>Get Flash</a></p>';
											document.write(alternateContent);  // insert non-flash content
										}
									}