var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Gérer tous les messages FSCommand d'une animation Flash.
function photos_DoFSCommand(command, args) {
	var photosObj = isInternetExplorer ? document.all.photos : document.photos;
	//
	// Insérez votre code ici.
	//
		
}
// 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 photos_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call photos_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}

function change(pays,photos){
	var photosObj = isInternetExplorer ? document.all.photos : document.photos;
	
	photosObj.change_titre(pays);
	photosObj.change_photos(photos);
}
