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', '960',			'height', '120',			'src', 'swf/header',			'quality', 'high',			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',			'align', 'middle',			'play', 'true',			'loop', 'true',			'scale', 'showall',			'wmode', 'transparent',			'devicefont', 'false',			'id', 'menu',			'bgcolor', '#ffffff',			'name', 'menu',			'menu', 'false',			'allowScriptAccess','sameDomain',			'allowFullScreen','false',			'movie', 'swf/header',			'salign', ''			); //end AC code	} else {  // flash is too old or we can't detect the plugin		var alternateContent ='<div class="header"><h1>Vertical Sales Management Inc.</h1>'       +'<ul class="menu">'       +'<li class="mm1"><a href="home.html"><span>Home</span></a></li>'       +'<li class="mm2"><a href="product.html"><span>Product</span></a></li>'       +'<li class="mm3"><a href="pricing.html"><span>Pricing</span></a></li>'       +'<li class="mm4"><a href="testimonials.html"><span>Testimonials</span></a></li>'       +'<li class="mm5"><a href="contact.html"><span>Contact</span></a></li>'       +' <li class="mmlogo"><a href="index.html"><span>Vertical Sales Management Inc.</span></a></li>'       +'</ul></div>';		document.write(alternateContent);  // insert non-flash content	}}