function dspSwf(curFile,curWidth,curHeight,flashVars,curUser){
	
	
		var contentPath;
		
		switch(curUser){
			case "web":
				contentPath = "../assets/flash/"+curFile;
			break;
			
			case "clt":
				contentPath = "../files/skin/"+curFile;
			break;
			
			case "ban":
				contentPath = "../files/banner/"+curFile;
			break;
			
			case "mbr":
				curFile = "mbrActBan";
				contentPath = "../assets/flash/"+curFile;
			break;
			
			default:
				contentPath = curFile;
			break;
		}
		
	
		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", "assets/flash/playerProductInstall",
				"FlashVars", "MMredirectURL="+MMredirectURL+'&MMplayerType='+MMPlayerType+'&MMdoctitle='+MMdoctitle+"",
				"width", "215",
				"height", "138",
				"align", "middle",
				"id", "playerInstall",
				"quality", "high",
				"bgcolor", "#ffffff",
				"name", "playerInstall",
				"allowScriptAccess","sameDomain",
				"type", "application/x-shockwave-flash",
				"pluginspage", "http://www.adobe.com/go/getflashplayer"
			);
		} else if (hasReqestedVersion) {
			AC_FL_RunContent(
					"src", contentPath,
					"width", curWidth,
					"height", curHeight,
					"align", "middle",
					"id", "",
					"quality", "high",
					"bgcolor", "#ffffff",
					"name", "",
					"FlashVars", flashVars,
					"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 {
			var alternateContent = '<p>'
			+ 'Ce contenu requiert Adobe Flash Player. '
			+ '<a href=http://www.adobe.com/go/getflash/>Obtenir Flash</a></p>';
			document.write(alternateContent);
		}
		
}