function auto_start_any(filename,width,height,wmode,target)
{
  var requiredMajorVersion = 6;
  var requiredMinorVersion = 0;
  var requiredRevision = 65;

  var hasProductInstall = DetectFlashVer(6, 0, 65);

  var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
  
  if ( hasProductInstall && !hasReqestedVersion ) {
    var MMPlayerType = (isIE == true) ? "ActiveX" : "PlugIn";
    var MMredirectURL = window.location;
    document.title = document.title.slice(0, 47) + " - Flash Player Installation";
    var MMdoctitle = document.title;

    AC_FL_RunContent(
		"src", "/kcPromoPropelPlugin/swf/no_flash/playerProductInstall",
		"FlashVars", "MMredirectURL="+MMredirectURL+'&MMplayerType='+MMPlayerType+'&MMdoctitle='+MMdoctitle+"",
		"width", width,
		"height", height,
		"align", "middle",
		"id", "detectionExample",
		"quality", "high",
		"name", "detectionExample",
		"allowScriptAccess","always",
		"type", "application/x-shockwave-flash",
		"pluginspage", "http://www.adobe.com/go/getflashplayer"
	);
	
    
  } else if (hasReqestedVersion) {
    AC_FL_RunContent(
    "src", filename,
    "width", width,
    "height", height,
    "FlashVars", 'videoname=' + target,
    "align", "middle",
    "quality", "high",
    "id", "filename",
    "name", "filename",
    "wmode",wmode,
    "allowScriptAccess","sameDomain",
    "type", "application/x-shockwave-flash",
    'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
    "pluginspage", "http://www.adobe.com/go/getflashplayer"
    );
    
  } else { 
    document.write(no_flash);
  }
}
