if (AC_FL_RunContent == 0 || DetectFlashVer == 0) {
	alert("This page requires AC_RunActiveContent.js.");
} else {
	disappearDiv();
	var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	if(hasRightVersion) {  // if we've detected an acceptable version
		disappearDiv( );
		AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0',
			'width', '1003',
			'height', '160',
			'src', 'http://static.wix.com/client/app',
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
								'valign', 'middle',
				'play', 'true',
			'loop', 'true',
			'scale', 'noScale',
			'wmode', 'transparent',
			'devicefont', 'false',
			'id', 'app',
			'bgcolor', '#ffffff',
			'name', 'app',
			'menu', 'true',
			'base', 'http://static.wix.com',
			'allowFullScreen', 'false',
			'allowScriptAccess','always',
			'movie', 'http://static.wix.com/client/app',
			'salign', 'tl',
			'FlashVars' , 'embedFormat=wix&pageId=xpGo;Q5uSjE-a&is_public=true&partner_id=WMGs4POB1ko-a&partner_name=wix&gu_id=0c2b0a9c-6a21-48c9-ae72-3f78252d0fc1&experiment_id=null'
		); //end AC code
	}else {  // flash is too old or we can't detect the plugin
	document.location = 'http://www.wix.com/noFlash.html';	
	}
}