// JavaScript Document
<!-- FlashLinking --->
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Gérer tous les messages FSCommand d'une animation Flash.
function site_DoFSCommand(command, args) {
	var siteObj = isInternetExplorer ? document.all.site : document.site;
	//
	//
	//alert(command);
	if (command != "allowscale"){
		if (command != "fullscreen"){
			if (command != "showmenu"){
				if (command != "allowFullScreen"){
					if (command != "scalemode"){
						document.title = command;
						location.href = args;
					}
				}
			}
		}
	}
	
	//
	//
}
// Hook pour Internet Explorer
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<script language=\"VBScript\"\>\n');
	document.write('On Error Resume Next\n');
	document.write('Sub site_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call site_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}

