picolena 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (390) hide show
  1. data/History.txt +11 -4
  2. data/Manifest.txt +1 -0
  3. data/README.txt +2 -2
  4. data/bin/picolena +1 -1
  5. data/config/hoe.rb +10 -10
  6. data/lib/picolena/USAGE +1 -1
  7. data/lib/picolena/config/basic.rb +11 -11
  8. data/lib/picolena/picolena_generator.rb +15 -14
  9. data/lib/picolena/templates/app/controllers/application.rb +5 -5
  10. data/lib/picolena/templates/app/controllers/documents_controller.rb +17 -9
  11. data/lib/picolena/templates/app/helpers/documents_helper.rb +15 -14
  12. data/lib/picolena/templates/app/models/document.rb +28 -37
  13. data/lib/picolena/templates/app/models/finder.rb +12 -37
  14. data/lib/picolena/templates/app/models/indexer.rb +58 -37
  15. data/lib/picolena/templates/app/models/plain_text_extractor.rb +16 -16
  16. data/lib/picolena/templates/app/models/query.rb +5 -5
  17. data/lib/picolena/templates/app/views/documents/show.html.haml +3 -3
  18. data/lib/picolena/templates/app/views/layouts/application.html.haml +2 -2
  19. data/lib/picolena/templates/config/environment.rb +1 -1
  20. data/lib/picolena/templates/config/initializers/002_load_indexed_dirs.rb +8 -8
  21. data/lib/picolena/templates/config/initializers/003_load_white_list_IPs.rb +8 -8
  22. data/lib/picolena/templates/config/initializers/005_load_custom_title_and_names_and_links.rb +5 -5
  23. data/lib/picolena/templates/config/initializers/006_load_icons.rb +9 -7
  24. data/lib/picolena/templates/lang/ui/es.yml +1 -1
  25. data/lib/picolena/templates/lib/core_exts.rb +7 -7
  26. data/lib/picolena/templates/lib/plain_text_extractor_DSL.rb +10 -10
  27. data/lib/picolena/templates/lib/plain_text_extractors/ms.excel.rb +1 -1
  28. data/lib/picolena/templates/lib/plain_text_extractors/plain_text.rb +2 -2
  29. data/lib/picolena/templates/lib/tasks/index.rake +8 -3
  30. data/lib/picolena/templates/lib/tasks/install_dependencies.rake +2 -2
  31. data/lib/picolena/templates/lib/tasks/log.rake +1 -1
  32. data/lib/picolena/templates/public/.htaccess +3 -3
  33. data/lib/picolena/templates/public/images/flags/sv.png +0 -0
  34. data/lib/picolena/templates/public/stylesheets/style.css +2 -2
  35. data/lib/picolena/templates/script/spec_server +1 -1
  36. data/lib/picolena/templates/spec/controllers/application_controller_spec.rb +2 -2
  37. data/lib/picolena/templates/spec/controllers/documents_controller_spec.rb +17 -17
  38. data/lib/picolena/templates/spec/helpers/application_helper_spec.rb +2 -2
  39. data/lib/picolena/templates/spec/helpers/documents_helper_spec.rb +3 -3
  40. data/lib/picolena/templates/spec/models/basic_finder_spec.rb +14 -14
  41. data/lib/picolena/templates/spec/models/document_spec.rb +7 -15
  42. data/lib/picolena/templates/spec/models/finder_spec.rb +45 -38
  43. data/lib/picolena/templates/spec/models/host_indexing_system_spec.rb +5 -5
  44. data/lib/picolena/templates/spec/models/index_directories_spec.rb +2 -2
  45. data/lib/picolena/templates/spec/models/plain_text_extractor_spec.rb +6 -6
  46. data/lib/picolena/templates/spec/models/query_spec.rb +7 -7
  47. data/lib/picolena/templates/spec/rcov.opts +1 -1
  48. data/lib/picolena/templates/spec/test_dirs/indexed/basic/myfirstjavaprog.java +1 -1
  49. data/lib/picolena/templates/spec/test_dirs/indexed/basic/queens.for +1 -1
  50. data/lib/picolena/templates/spec/test_dirs/indexed/lang/hugo +74 -74
  51. data/lib/picolena/templates/spec/test_dirs/indexed/lang/lorca +56 -56
  52. data/lib/picolena/templates/spec/test_dirs/indexed/others/7.html +4 -4
  53. data/lib/picolena/templates/spec/test_dirs/indexed/others/ccmatrix1.cpp +6 -6
  54. data/lib/picolena/templates/spec/test_dirs/indexed/others/lemonde.htm +326 -326
  55. data/lib/picolena/templates/spec/test_dirs/indexed/others/nested/ReadMe.rtf +62 -62
  56. data/lib/picolena/templates/spec/test_dirs/indexed/others/xor.vee +0 -1
  57. data/lib/picolena/templates/spec/test_dirs/indexed/others/zafh.net.html +1 -1
  58. data/lib/picolena/version.rb +1 -1
  59. data/lib/rubigen_ext.rb +1 -1
  60. data/rails_plugins/globalite/CHANGELOG +1 -1
  61. data/rails_plugins/globalite/README +19 -19
  62. data/rails_plugins/globalite/lang/rails/de-DE.yml +6 -6
  63. data/rails_plugins/globalite/lang/rails/en-UK.yml +10 -10
  64. data/rails_plugins/globalite/lang/rails/en-US.yml +10 -10
  65. data/rails_plugins/globalite/lang/rails/es-ES.yml +11 -11
  66. data/rails_plugins/globalite/lang/rails/fr-FR.yml +10 -10
  67. data/rails_plugins/globalite/lang/rails/it.yml +10 -10
  68. data/rails_plugins/globalite/lang/rails/pt-BR.yml +6 -6
  69. data/rails_plugins/globalite/lang/rails/pt-PT.yml +6 -6
  70. data/rails_plugins/globalite/lib/globalite/l10n.rb +25 -25
  71. data/rails_plugins/globalite/lib/globalite/locale.rb +9 -9
  72. data/rails_plugins/globalite/lib/rails/core_ext.rb +4 -4
  73. data/rails_plugins/globalite/lib/rails/localization.rb +3 -3
  74. data/rails_plugins/globalite/lib/rails/localized_action_view.rb +17 -17
  75. data/rails_plugins/globalite/lib/rails/localized_active_record.rb +4 -4
  76. data/rails_plugins/globalite/rdoc/classes/ActionView/Helpers/DateHelper.html +19 -19
  77. data/rails_plugins/globalite/rdoc/classes/ActionView/Helpers/FormOptionsHelper.html +9 -9
  78. data/rails_plugins/globalite/rdoc/classes/ActionView/Helpers/NumberHelper.html +8 -8
  79. data/rails_plugins/globalite/rdoc/classes/ActionView/Helpers.html +5 -5
  80. data/rails_plugins/globalite/rdoc/classes/ActionView.html +5 -5
  81. data/rails_plugins/globalite/rdoc/classes/ActiveRecord/Errors.html +6 -6
  82. data/rails_plugins/globalite/rdoc/classes/ActiveRecord.html +5 -5
  83. data/rails_plugins/globalite/rdoc/classes/Array.html +6 -6
  84. data/rails_plugins/globalite/rdoc/classes/Date.html +8 -8
  85. data/rails_plugins/globalite/rdoc/classes/Globalite/L10n.html +49 -49
  86. data/rails_plugins/globalite/rdoc/classes/Globalite.html +6 -6
  87. data/rails_plugins/globalite/rdoc/classes/Kernel.html +6 -6
  88. data/rails_plugins/globalite/rdoc/classes/Locale.html +11 -11
  89. data/rails_plugins/globalite/rdoc/classes/Time.html +8 -8
  90. data/rails_plugins/globalite/rdoc/files/README.html +5 -5
  91. data/rails_plugins/globalite/rdoc/files/lib/globalite/l10n_rb.html +5 -5
  92. data/rails_plugins/globalite/rdoc/files/lib/globalite/locale_rb.html +5 -5
  93. data/rails_plugins/globalite/rdoc/files/lib/globalite_rb.html +5 -5
  94. data/rails_plugins/globalite/rdoc/files/lib/rails/core_ext_rb.html +5 -5
  95. data/rails_plugins/globalite/rdoc/files/lib/rails/localization_rb.html +5 -5
  96. data/rails_plugins/globalite/rdoc/files/lib/rails/localized_action_view_rb.html +5 -5
  97. data/rails_plugins/globalite/rdoc/files/lib/rails/localized_active_record_rb.html +5 -5
  98. data/rails_plugins/globalite/rdoc/fr_class_index.html +1 -1
  99. data/rails_plugins/globalite/rdoc/fr_file_index.html +1 -1
  100. data/rails_plugins/globalite/rdoc/fr_method_index.html +1 -1
  101. data/rails_plugins/globalite/rdoc/index.html +1 -1
  102. data/rails_plugins/globalite/spec/core_localization_spec.rb +18 -18
  103. data/rails_plugins/globalite/spec/l10n_spec.rb +25 -25
  104. data/rails_plugins/globalite/tasks/globalite_tasks.rake +6 -6
  105. data/rails_plugins/rspec/CHANGES +16 -16
  106. data/rails_plugins/rspec/README +2 -2
  107. data/rails_plugins/rspec/Rakefile +1 -1
  108. data/rails_plugins/rspec/UPGRADE +1 -1
  109. data/rails_plugins/rspec/autotest/discover.rb +1 -1
  110. data/rails_plugins/rspec/examples/pure/autogenerated_docstrings_example.rb +5 -5
  111. data/rails_plugins/rspec/examples/pure/before_and_after_example.rb +2 -2
  112. data/rails_plugins/rspec/examples/pure/behave_as_example.rb +5 -5
  113. data/rails_plugins/rspec/examples/pure/custom_expectation_matchers.rb +7 -7
  114. data/rails_plugins/rspec/examples/pure/file_accessor.rb +1 -1
  115. data/rails_plugins/rspec/examples/pure/file_accessor_spec.rb +2 -2
  116. data/rails_plugins/rspec/examples/pure/helper_method_example.rb +1 -1
  117. data/rails_plugins/rspec/examples/pure/legacy_spec.rb +2 -2
  118. data/rails_plugins/rspec/examples/pure/predicate_example.rb +2 -2
  119. data/rails_plugins/rspec/examples/pure/shared_example_group_example.rb +11 -11
  120. data/rails_plugins/rspec/examples/pure/shared_stack_examples.rb +4 -4
  121. data/rails_plugins/rspec/examples/pure/stack.rb +6 -6
  122. data/rails_plugins/rspec/examples/pure/stack_spec.rb +7 -7
  123. data/rails_plugins/rspec/examples/pure/stack_spec_with_nested_example_groups.rb +10 -10
  124. data/rails_plugins/rspec/examples/pure/stubbing_example.rb +4 -4
  125. data/rails_plugins/rspec/examples/stories/adder.rb +2 -2
  126. data/rails_plugins/rspec/examples/stories/addition +8 -8
  127. data/rails_plugins/rspec/examples/stories/calculator.rb +5 -5
  128. data/rails_plugins/rspec/examples/stories/game-of-life/behaviour/examples/game_behaviour.rb +7 -7
  129. data/rails_plugins/rspec/examples/stories/game-of-life/behaviour/examples/grid_behaviour.rb +13 -13
  130. data/rails_plugins/rspec/examples/stories/game-of-life/behaviour/stories/create_a_cell.rb +5 -5
  131. data/rails_plugins/rspec/examples/stories/game-of-life/behaviour/stories/kill_a_cell.rb +2 -2
  132. data/rails_plugins/rspec/examples/stories/game-of-life/life/game.rb +3 -3
  133. data/rails_plugins/rspec/examples/stories/game-of-life/life/grid.rb +10 -10
  134. data/rails_plugins/rspec/failing_examples/failing_autogenerated_docstrings_example.rb +5 -5
  135. data/rails_plugins/rspec/failing_examples/failure_in_setup.rb +3 -3
  136. data/rails_plugins/rspec/failing_examples/failure_in_teardown.rb +3 -3
  137. data/rails_plugins/rspec/failing_examples/mocking_example.rb +1 -1
  138. data/rails_plugins/rspec/failing_examples/raising_example.rb +11 -11
  139. data/rails_plugins/rspec/failing_examples/team_spec.rb +5 -5
  140. data/rails_plugins/rspec/lib/autotest/rspec.rb +5 -5
  141. data/rails_plugins/rspec/lib/spec/example/configuration.rb +4 -4
  142. data/rails_plugins/rspec/lib/spec/example/example_group_factory.rb +3 -3
  143. data/rails_plugins/rspec/lib/spec/example/example_group_methods.rb +1 -1
  144. data/rails_plugins/rspec/lib/spec/example/example_matcher.rb +2 -2
  145. data/rails_plugins/rspec/lib/spec/example/example_methods.rb +4 -4
  146. data/rails_plugins/rspec/lib/spec/example/pending.rb +1 -1
  147. data/rails_plugins/rspec/lib/spec/expectations/differs/default.rb +5 -5
  148. data/rails_plugins/rspec/lib/spec/expectations/errors.rb +1 -1
  149. data/rails_plugins/rspec/lib/spec/expectations/handler.rb +5 -5
  150. data/rails_plugins/rspec/lib/spec/expectations.rb +1 -1
  151. data/rails_plugins/rspec/lib/spec/extensions/main.rb +8 -8
  152. data/rails_plugins/rspec/lib/spec/interop/test/unit/ui/console/testrunner.rb +2 -2
  153. data/rails_plugins/rspec/lib/spec/matchers/be.rb +18 -18
  154. data/rails_plugins/rspec/lib/spec/matchers/be_close.rb +4 -4
  155. data/rails_plugins/rspec/lib/spec/matchers/change.rb +20 -20
  156. data/rails_plugins/rspec/lib/spec/matchers/eql.rb +4 -4
  157. data/rails_plugins/rspec/lib/spec/matchers/equal.rb +4 -4
  158. data/rails_plugins/rspec/lib/spec/matchers/has.rb +8 -8
  159. data/rails_plugins/rspec/lib/spec/matchers/have.rb +9 -9
  160. data/rails_plugins/rspec/lib/spec/matchers/include.rb +7 -7
  161. data/rails_plugins/rspec/lib/spec/matchers/match.rb +6 -6
  162. data/rails_plugins/rspec/lib/spec/matchers/operator_matcher.rb +1 -1
  163. data/rails_plugins/rspec/lib/spec/matchers/raise_error.rb +6 -6
  164. data/rails_plugins/rspec/lib/spec/matchers/respond_to.rb +7 -7
  165. data/rails_plugins/rspec/lib/spec/matchers/satisfy.rb +4 -4
  166. data/rails_plugins/rspec/lib/spec/matchers/simple_matcher.rb +3 -3
  167. data/rails_plugins/rspec/lib/spec/matchers/throw_symbol.rb +8 -8
  168. data/rails_plugins/rspec/lib/spec/matchers.rb +2 -2
  169. data/rails_plugins/rspec/lib/spec/mocks/argument_constraint_matchers.rb +3 -3
  170. data/rails_plugins/rspec/lib/spec/mocks/argument_expectation.rb +32 -32
  171. data/rails_plugins/rspec/lib/spec/mocks/error_generator.rb +13 -13
  172. data/rails_plugins/rspec/lib/spec/mocks/errors.rb +1 -1
  173. data/rails_plugins/rspec/lib/spec/mocks/message_expectation.rb +38 -38
  174. data/rails_plugins/rspec/lib/spec/mocks/methods.rb +3 -3
  175. data/rails_plugins/rspec/lib/spec/mocks/mock.rb +5 -5
  176. data/rails_plugins/rspec/lib/spec/mocks/order_group.rb +5 -5
  177. data/rails_plugins/rspec/lib/spec/mocks/proxy.rb +4 -4
  178. data/rails_plugins/rspec/lib/spec/mocks/space.rb +3 -3
  179. data/rails_plugins/rspec/lib/spec/mocks/spec_methods.rb +1 -1
  180. data/rails_plugins/rspec/lib/spec/mocks.rb +13 -13
  181. data/rails_plugins/rspec/lib/spec/rake/spectask.rb +4 -4
  182. data/rails_plugins/rspec/lib/spec/rake/verify_rcov.rb +9 -9
  183. data/rails_plugins/rspec/lib/spec/runner/backtrace_tweaker.rb +2 -2
  184. data/rails_plugins/rspec/lib/spec/runner/formatter/base_formatter.rb +7 -7
  185. data/rails_plugins/rspec/lib/spec/runner/formatter/base_text_formatter.rb +13 -13
  186. data/rails_plugins/rspec/lib/spec/runner/formatter/failing_examples_formatter.rb +1 -1
  187. data/rails_plugins/rspec/lib/spec/runner/formatter/html_formatter.rb +8 -8
  188. data/rails_plugins/rspec/lib/spec/runner/formatter/profile_formatter.rb +7 -7
  189. data/rails_plugins/rspec/lib/spec/runner/formatter/progress_bar_formatter.rb +2 -2
  190. data/rails_plugins/rspec/lib/spec/runner/formatter/snippet_extractor.rb +5 -5
  191. data/rails_plugins/rspec/lib/spec/runner/formatter/specdoc_formatter.rb +4 -4
  192. data/rails_plugins/rspec/lib/spec/runner/formatter/story/html_formatter.rb +6 -6
  193. data/rails_plugins/rspec/lib/spec/runner/formatter/story/plain_text_formatter.rb +12 -12
  194. data/rails_plugins/rspec/lib/spec/runner/heckle_runner.rb +6 -6
  195. data/rails_plugins/rspec/lib/spec/runner/option_parser.rb +5 -5
  196. data/rails_plugins/rspec/lib/spec/runner/options.rb +8 -8
  197. data/rails_plugins/rspec/lib/spec/runner/reporter.rb +14 -14
  198. data/rails_plugins/rspec/lib/spec/runner.rb +41 -41
  199. data/rails_plugins/rspec/lib/spec/story/extensions/main.rb +6 -6
  200. data/rails_plugins/rspec/lib/spec/story/extensions/regexp.rb +1 -1
  201. data/rails_plugins/rspec/lib/spec/story/extensions/string.rb +1 -1
  202. data/rails_plugins/rspec/lib/spec/story/given_scenario.rb +1 -1
  203. data/rails_plugins/rspec/lib/spec/story/runner/plain_text_story_runner.rb +6 -6
  204. data/rails_plugins/rspec/lib/spec/story/runner/scenario_collector.rb +2 -2
  205. data/rails_plugins/rspec/lib/spec/story/runner/scenario_runner.rb +5 -5
  206. data/rails_plugins/rspec/lib/spec/story/runner/story_mediator.rb +20 -20
  207. data/rails_plugins/rspec/lib/spec/story/runner/story_parser.rb +29 -29
  208. data/rails_plugins/rspec/lib/spec/story/runner/story_runner.rb +8 -8
  209. data/rails_plugins/rspec/lib/spec/story/runner.rb +7 -7
  210. data/rails_plugins/rspec/lib/spec/story/scenario.rb +1 -1
  211. data/rails_plugins/rspec/lib/spec/story/step.rb +5 -5
  212. data/rails_plugins/rspec/lib/spec/story/step_group.rb +12 -12
  213. data/rails_plugins/rspec/lib/spec/story/step_mother.rb +6 -6
  214. data/rails_plugins/rspec/lib/spec/story/story.rb +5 -5
  215. data/rails_plugins/rspec/lib/spec/story/world.rb +16 -16
  216. data/rails_plugins/rspec/lib/spec/translator.rb +21 -21
  217. data/rails_plugins/rspec/lib/spec/version.rb +2 -2
  218. data/rails_plugins/rspec/lib/spec.rb +1 -1
  219. data/rails_plugins/rspec/pre_commit/lib/pre_commit/pre_commit.rb +1 -1
  220. data/rails_plugins/rspec/pre_commit/lib/pre_commit/rspec.rb +6 -6
  221. data/rails_plugins/rspec/pre_commit/lib/pre_commit/rspec_on_rails.rb +6 -6
  222. data/rails_plugins/rspec/pre_commit/spec/pre_commit/pre_commit_spec.rb +1 -1
  223. data/rails_plugins/rspec/pre_commit/spec/pre_commit/rspec_on_rails_spec.rb +1 -1
  224. data/rails_plugins/rspec/report.html +3 -3
  225. data/rails_plugins/rspec/spec/autotest/discover_spec.rb +2 -2
  226. data/rails_plugins/rspec/spec/autotest/rspec_spec.rb +30 -30
  227. data/rails_plugins/rspec/spec/autotest_matchers.rb +7 -7
  228. data/rails_plugins/rspec/spec/spec/example/configuration_spec.rb +5 -5
  229. data/rails_plugins/rspec/spec/spec/example/example_group_factory_spec.rb +5 -5
  230. data/rails_plugins/rspec/spec/spec/example/example_group_methods_spec.rb +3 -3
  231. data/rails_plugins/rspec/spec/spec/example/example_group_spec.rb +2 -2
  232. data/rails_plugins/rspec/spec/spec/example/example_matcher_spec.rb +10 -10
  233. data/rails_plugins/rspec/spec/spec/example/example_runner_spec.rb +29 -29
  234. data/rails_plugins/rspec/spec/spec/example/example_spec.rb +6 -6
  235. data/rails_plugins/rspec/spec/spec/example/nested_example_group_spec.rb +2 -2
  236. data/rails_plugins/rspec/spec/spec/example/pending_module_spec.rb +3 -3
  237. data/rails_plugins/rspec/spec/spec/example/predicate_matcher_spec.rb +1 -1
  238. data/rails_plugins/rspec/spec/spec/example/shared_example_group_spec.rb +4 -4
  239. data/rails_plugins/rspec/spec/spec/expectations/extensions/object_spec.rb +12 -12
  240. data/rails_plugins/rspec/spec/spec/expectations/fail_with_spec.rb +8 -8
  241. data/rails_plugins/rspec/spec/spec/extensions/main_spec.rb +6 -6
  242. data/rails_plugins/rspec/spec/spec/interop/test/unit/spec_spec.rb +2 -2
  243. data/rails_plugins/rspec/spec/spec/interop/test/unit/test_unit_spec_helper.rb +2 -2
  244. data/rails_plugins/rspec/spec/spec/interop/test/unit/testcase_spec.rb +2 -2
  245. data/rails_plugins/rspec/spec/spec/matchers/be_spec.rb +5 -5
  246. data/rails_plugins/rspec/spec/spec/matchers/change_spec.rb +14 -14
  247. data/rails_plugins/rspec/spec/spec/matchers/description_generation_spec.rb +25 -25
  248. data/rails_plugins/rspec/spec/spec/matchers/exist_spec.rb +5 -5
  249. data/rails_plugins/rspec/spec/spec/matchers/handler_spec.rb +16 -16
  250. data/rails_plugins/rspec/spec/spec/matchers/have_spec.rb +13 -13
  251. data/rails_plugins/rspec/spec/spec/matchers/match_spec.rb +1 -1
  252. data/rails_plugins/rspec/spec/spec/matchers/matcher_methods_spec.rb +1 -1
  253. data/rails_plugins/rspec/spec/spec/matchers/operator_matcher_spec.rb +17 -17
  254. data/rails_plugins/rspec/spec/spec/matchers/raise_error_spec.rb +20 -20
  255. data/rails_plugins/rspec/spec/spec/matchers/respond_to_spec.rb +10 -10
  256. data/rails_plugins/rspec/spec/spec/matchers/simple_matcher_spec.rb +3 -3
  257. data/rails_plugins/rspec/spec/spec/matchers/throw_symbol_spec.rb +2 -2
  258. data/rails_plugins/rspec/spec/spec/mocks/any_number_of_times_spec.rb +2 -2
  259. data/rails_plugins/rspec/spec/spec/mocks/bug_report_10263.rb +3 -3
  260. data/rails_plugins/rspec/spec/spec/mocks/bug_report_11545_spec.rb +4 -4
  261. data/rails_plugins/rspec/spec/spec/mocks/bug_report_15719_spec.rb +1 -1
  262. data/rails_plugins/rspec/spec/spec/mocks/bug_report_7611_spec.rb +1 -1
  263. data/rails_plugins/rspec/spec/spec/mocks/bug_report_8302_spec.rb +1 -1
  264. data/rails_plugins/rspec/spec/spec/mocks/failing_mock_argument_constraints_spec.rb +12 -12
  265. data/rails_plugins/rspec/spec/spec/mocks/mock_ordering_spec.rb +3 -3
  266. data/rails_plugins/rspec/spec/spec/mocks/mock_space_spec.rb +1 -1
  267. data/rails_plugins/rspec/spec/spec/mocks/mock_spec.rb +56 -56
  268. data/rails_plugins/rspec/spec/spec/mocks/multiple_return_value_spec.rb +3 -3
  269. data/rails_plugins/rspec/spec/spec/mocks/once_counts_spec.rb +1 -1
  270. data/rails_plugins/rspec/spec/spec/mocks/options_hash_spec.rb +1 -1
  271. data/rails_plugins/rspec/spec/spec/mocks/partial_mock_spec.rb +16 -16
  272. data/rails_plugins/rspec/spec/spec/mocks/partial_mock_using_mocks_directly_spec.rb +10 -10
  273. data/rails_plugins/rspec/spec/spec/mocks/passing_mock_argument_constraints_spec.rb +13 -13
  274. data/rails_plugins/rspec/spec/spec/mocks/stub_spec.rb +7 -7
  275. data/rails_plugins/rspec/spec/spec/mocks/twice_counts_spec.rb +6 -6
  276. data/rails_plugins/rspec/spec/spec/package/bin_spec_spec.rb +1 -1
  277. data/rails_plugins/rspec/spec/spec/runner/class_and_argument_parser_spec.rb +2 -2
  278. data/rails_plugins/rspec/spec/spec/runner/command_line_spec.rb +1 -1
  279. data/rails_plugins/rspec/spec/spec/runner/drb_command_line_spec.rb +2 -2
  280. data/rails_plugins/rspec/spec/spec/runner/execution_context_spec.rb +2 -2
  281. data/rails_plugins/rspec/spec/spec/runner/formatter/failing_example_groups_formatter_spec.rb +2 -2
  282. data/rails_plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.4.html +1 -1
  283. data/rails_plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.5-jruby.html +2 -2
  284. data/rails_plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.5.html +1 -1
  285. data/rails_plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.6-jruby.html +1 -1
  286. data/rails_plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.6.html +3 -3
  287. data/rails_plugins/rspec/spec/spec/runner/formatter/html_formatter_spec.rb +1 -1
  288. data/rails_plugins/rspec/spec/spec/runner/formatter/profile_formatter_spec.rb +9 -9
  289. data/rails_plugins/rspec/spec/spec/runner/formatter/progress_bar_formatter_spec.rb +4 -4
  290. data/rails_plugins/rspec/spec/spec/runner/formatter/spec_mate_formatter_spec.rb +1 -1
  291. data/rails_plugins/rspec/spec/spec/runner/formatter/story/html_formatter_spec.rb +5 -5
  292. data/rails_plugins/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.4.html +13 -13
  293. data/rails_plugins/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.6.html +2 -2
  294. data/rails_plugins/rspec/spec/spec/runner/heckle_runner_spec.rb +1 -1
  295. data/rails_plugins/rspec/spec/spec/runner/noisy_backtrace_tweaker_spec.rb +3 -3
  296. data/rails_plugins/rspec/spec/spec/runner/option_parser_spec.rb +9 -9
  297. data/rails_plugins/rspec/spec/spec/runner/options_spec.rb +13 -13
  298. data/rails_plugins/rspec/spec/spec/runner/quiet_backtrace_tweaker_spec.rb +1 -1
  299. data/rails_plugins/rspec/spec/spec/spec_classes.rb +8 -8
  300. data/rails_plugins/rspec/spec/spec/story/builders.rb +7 -7
  301. data/rails_plugins/rspec/spec/spec/story/extensions/main_spec.rb +6 -6
  302. data/rails_plugins/rspec/spec/spec/story/given_scenario_spec.rb +3 -3
  303. data/rails_plugins/rspec/spec/spec/story/runner/plain_text_story_runner_spec.rb +12 -12
  304. data/rails_plugins/rspec/spec/spec/story/runner/scenario_collector_spec.rb +2 -2
  305. data/rails_plugins/rspec/spec/spec/story/runner/scenario_runner_spec.rb +21 -21
  306. data/rails_plugins/rspec/spec/spec/story/runner/story_mediator_spec.rb +22 -22
  307. data/rails_plugins/rspec/spec/spec/story/runner/story_parser_spec.rb +55 -55
  308. data/rails_plugins/rspec/spec/spec/story/runner/story_runner_spec.rb +44 -44
  309. data/rails_plugins/rspec/spec/spec/story/runner_spec.rb +18 -18
  310. data/rails_plugins/rspec/spec/spec/story/scenario_spec.rb +2 -2
  311. data/rails_plugins/rspec/spec/spec/story/step_group_spec.rb +20 -20
  312. data/rails_plugins/rspec/spec/spec/story/step_mother_spec.rb +14 -14
  313. data/rails_plugins/rspec/spec/spec/story/step_spec.rb +33 -33
  314. data/rails_plugins/rspec/spec/spec/story/story_spec.rb +12 -12
  315. data/rails_plugins/rspec/spec/spec/translator_spec.rb +12 -12
  316. data/rails_plugins/rspec/spec/spec_helper.rb +5 -5
  317. data/rails_plugins/rspec/stories/resources/helpers/story_helper.rb +1 -1
  318. data/rails_plugins/rspec/stories/resources/steps/running_rspec.rb +4 -4
  319. data/rails_plugins/rspec/stories/resources/test/spec_and_test_together.rb +2 -2
  320. data/rails_plugins/rspec/stories/resources/test/test_case_with_should_methods.rb +1 -1
  321. data/rails_plugins/rspec/story_server/prototype/javascripts/builder.js +14 -14
  322. data/rails_plugins/rspec/story_server/prototype/javascripts/controls.js +61 -61
  323. data/rails_plugins/rspec/story_server/prototype/javascripts/dragdrop.js +144 -144
  324. data/rails_plugins/rspec/story_server/prototype/javascripts/effects.js +127 -127
  325. data/rails_plugins/rspec/story_server/prototype/javascripts/rspec.js +15 -15
  326. data/rails_plugins/rspec/story_server/prototype/javascripts/scriptaculous.js +7 -7
  327. data/rails_plugins/rspec/story_server/prototype/javascripts/slider.js +37 -37
  328. data/rails_plugins/rspec/story_server/prototype/javascripts/sound.js +4 -4
  329. data/rails_plugins/rspec/story_server/prototype/javascripts/unittest.js +66 -66
  330. data/rails_plugins/rspec/story_server/prototype/stories.html +9 -9
  331. data/rails_plugins/rspec_on_rails/MIT-LICENSE +11 -11
  332. data/rails_plugins/rspec_on_rails/generators/rspec/templates/rcov.opts +1 -1
  333. data/rails_plugins/rspec_on_rails/generators/rspec/templates/script/spec_server +1 -1
  334. data/rails_plugins/rspec_on_rails/generators/rspec_controller/USAGE +1 -1
  335. data/rails_plugins/rspec_on_rails/generators/rspec_controller/templates/helper_spec.rb +2 -2
  336. data/rails_plugins/rspec_on_rails/generators/rspec_controller/templates/view_spec.rb +1 -1
  337. data/rails_plugins/rspec_on_rails/generators/rspec_scaffold/rspec_scaffold_generator.rb +12 -12
  338. data/rails_plugins/rspec_on_rails/generators/rspec_scaffold/templates/controller_spec.rb +35 -35
  339. data/rails_plugins/rspec_on_rails/generators/rspec_scaffold/templates/edit_erb_spec.rb +2 -2
  340. data/rails_plugins/rspec_on_rails/generators/rspec_scaffold/templates/helper_spec.rb +2 -2
  341. data/rails_plugins/rspec_on_rails/generators/rspec_scaffold/templates/index_erb_spec.rb +1 -1
  342. data/rails_plugins/rspec_on_rails/generators/rspec_scaffold/templates/new_erb_spec.rb +2 -2
  343. data/rails_plugins/rspec_on_rails/generators/rspec_scaffold/templates/routing_spec.rb +11 -11
  344. data/rails_plugins/rspec_on_rails/generators/rspec_scaffold/templates/show_erb_spec.rb +1 -1
  345. data/rails_plugins/rspec_on_rails/lib/autotest/rails_rspec.rb +3 -3
  346. data/rails_plugins/rspec_on_rails/lib/spec/rails/example/controller_example_group.rb +4 -4
  347. data/rails_plugins/rspec_on_rails/lib/spec/rails/example/rails_example_group.rb +1 -1
  348. data/rails_plugins/rspec_on_rails/lib/spec/rails/example/render_observer.rb +4 -4
  349. data/rails_plugins/rspec_on_rails/lib/spec/rails/example/view_example_group.rb +1 -1
  350. data/rails_plugins/rspec_on_rails/lib/spec/rails/extensions/action_controller/base.rb +1 -1
  351. data/rails_plugins/rspec_on_rails/lib/spec/rails/extensions/spec/matchers/have.rb +1 -1
  352. data/rails_plugins/rspec_on_rails/lib/spec/rails/matchers/assert_select.rb +10 -10
  353. data/rails_plugins/rspec_on_rails/lib/spec/rails/matchers/have_text.rb +6 -6
  354. data/rails_plugins/rspec_on_rails/lib/spec/rails/matchers/render_template.rb +7 -7
  355. data/rails_plugins/rspec_on_rails/lib/spec/rails/story_adapter.rb +1 -1
  356. data/rails_plugins/rspec_on_rails/lib/spec/rails.rb +8 -8
  357. data/rails_plugins/rspec_on_rails/spec/rails/autotest/mappings_spec.rb +6 -6
  358. data/rails_plugins/rspec_on_rails/spec/rails/example/controller_isolation_spec.rb +1 -1
  359. data/rails_plugins/rspec_on_rails/spec/rails/example/controller_spec_spec.rb +22 -22
  360. data/rails_plugins/rspec_on_rails/spec/rails/example/helper_spec_spec.rb +1 -1
  361. data/rails_plugins/rspec_on_rails/spec/rails/example/ivar_proxy_spec.rb +3 -3
  362. data/rails_plugins/rspec_on_rails/spec/rails/example/shared_behaviour_spec.rb +2 -2
  363. data/rails_plugins/rspec_on_rails/spec/rails/example/view_spec_spec.rb +8 -8
  364. data/rails_plugins/rspec_on_rails/spec/rails/extensions/action_view_base_spec.rb +7 -7
  365. data/rails_plugins/rspec_on_rails/spec/rails/extensions/active_record_spec.rb +1 -1
  366. data/rails_plugins/rspec_on_rails/spec/rails/matchers/assert_select_spec.rb +37 -37
  367. data/rails_plugins/rspec_on_rails/spec/rails/matchers/description_generation_spec.rb +1 -1
  368. data/rails_plugins/rspec_on_rails/spec/rails/matchers/have_text_spec.rb +4 -4
  369. data/rails_plugins/rspec_on_rails/spec/rails/matchers/redirect_to_spec.rb +26 -26
  370. data/rails_plugins/rspec_on_rails/spec/rails/matchers/render_spec.rb +18 -18
  371. data/rails_plugins/rspec_on_rails/spec/rails/mocks/mock_model_spec.rb +2 -2
  372. data/rails_plugins/rspec_on_rails/spec/spec_helper.rb +1 -1
  373. data/rails_plugins/rspec_on_rails/spec_resources/controllers/controller_spec_controller.rb +9 -9
  374. data/rails_plugins/rspec_on_rails/spec_resources/controllers/redirect_spec_controller.rb +7 -7
  375. data/rails_plugins/rspec_on_rails/spec_resources/controllers/render_spec_controller.rb +5 -5
  376. data/rails_plugins/rspec_on_rails/spec_resources/controllers/rjs_spec_controller.rb +10 -10
  377. data/rails_plugins/rspec_on_rails/spec_resources/helpers/explicit_helper.rb +1 -1
  378. data/rails_plugins/rspec_on_rails/stories/transactions_should_rollback.rb +1 -1
  379. data/rails_plugins/rspec_on_rails/tasks/rspec.rake +4 -4
  380. data/script/txt2html +1 -1
  381. data/setup.rb +4 -4
  382. data/tasks/hack.rake +3 -3
  383. data/website/index.html +2 -2
  384. data/website/index.txt +1 -1
  385. data/website/index_devjavu +3 -3
  386. data/website/javascripts/rounded_corners_lite.inc.js +1 -1
  387. data/website/stylesheets/screen.css +2 -2
  388. data.tar.gz.sig +0 -0
  389. metadata +2 -1
  390. metadata.gz.sig +2 -1
@@ -7,26 +7,26 @@
7
7
  <title>Le Monde.fr : A la une</title>
8
8
  <meta NAME="ROBOTS" CONTENT="INDEX,FOLLOW,NOARCHIVE">
9
9
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
10
- <meta name="DESCRIPTION" content="LE MONDE, Journal Le Monde, quotidien d'information francophone / Le Monde,
10
+ <meta name="DESCRIPTION" content="LE MONDE, Journal Le Monde, quotidien d'information francophone / Le Monde,
11
11
  the french quality newspaper of record">
12
- <meta http-equiv="Refresh" content="1802"><meta http-equiv="Expires" content="0"><meta http-equiv="Pragma" content="no-cache"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: A la Une" href="http://www.lemonde.fr/rss/sequence/0,2-3208,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Opinions" href="http://www.lemonde.fr/rss/sequence/0,2-3232,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: International" href="http://www.lemonde.fr/rss/sequence/0,2-3210,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Europe" href="http://www.lemonde.fr/rss/sequence/0,2-3214,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Soci�t�" href="http://www.lemonde.fr/rss/sequence/0,2-3224,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Economie" href="http://www.lemonde.fr/rss/sequence/0,2-3234,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: M�dias" href="http://www.lemonde.fr/rss/sequence/0,2-3236,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Rendez-vous" href="http://www.lemonde.fr/rss/sequence/0,2-3238,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Sports" href="http://www.lemonde.fr/rss/sequence/0,2-3242,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Nature & Sciences" href="http://www.lemonde.fr/rss/sequence/0,2-3244,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Culture" href="http://www.lemonde.fr/rss/sequence/0,2-3246,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Technologies" href="http://www.lemonde.fr/rss/sequence/0,2-651865,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Cin�ma" href="http://www.lemonde.fr/rss/sequence/0,2-3476,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Voyages" href="http://www.lemonde.fr/rss/sequence/0,2-3546,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Livres" href="http://www.lemonde.fr/rss/sequence/0,2-3260,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Examens" href="http://www.lemonde.fr/rss/sequence/0,2-3404,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Le Grenelle de l'environnement" href="http://www.lemonde.fr/rss/sequence/0,2-959155,1-0,0.xml"> <meta name="KEYWORDS" content="LE MONDE, INFORMATIONS, INFOS, QUOTIDIEN, DAILY NEWS, PRESSE, PRESS, NEWS, FRANCE,
13
- FRENCH, DOSSIERS, ECONOMIE, ECONOMY, CULTURE, INTERNATIONAL, BOURSE, CINEMA, MOVIES, LIVRES, BOOKS,
14
- MULTIMEDIA, EDUCATION, FORUMS, FORUM, SERVICES, ABONNEMENTS, BOUTIQUE, EMPLOI, EXPOSITIONS, FESTIVALS,
15
- SPORT, MAGAZINE, EUROPEEN, DIPLOMATIQUE, PARTENAIRES, PUBLICITE, LETTRES D'INFORMATIONS, NEWSLETTERS,
16
- JOURNAL EN LIGNE, LE MONDE ON LINE, VERSION PALM, VERSION MOBILES, MOBILE SERVICES, METEO, ARCHIVES,
12
+ <meta http-equiv="Refresh" content="1802"><meta http-equiv="Expires" content="0"><meta http-equiv="Pragma" content="no-cache"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: A la Une" href="http://www.lemonde.fr/rss/sequence/0,2-3208,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Opinions" href="http://www.lemonde.fr/rss/sequence/0,2-3232,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: International" href="http://www.lemonde.fr/rss/sequence/0,2-3210,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Europe" href="http://www.lemonde.fr/rss/sequence/0,2-3214,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Soci�t�" href="http://www.lemonde.fr/rss/sequence/0,2-3224,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Economie" href="http://www.lemonde.fr/rss/sequence/0,2-3234,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: M�dias" href="http://www.lemonde.fr/rss/sequence/0,2-3236,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Rendez-vous" href="http://www.lemonde.fr/rss/sequence/0,2-3238,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Sports" href="http://www.lemonde.fr/rss/sequence/0,2-3242,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Nature & Sciences" href="http://www.lemonde.fr/rss/sequence/0,2-3244,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Culture" href="http://www.lemonde.fr/rss/sequence/0,2-3246,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Technologies" href="http://www.lemonde.fr/rss/sequence/0,2-651865,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Cin�ma" href="http://www.lemonde.fr/rss/sequence/0,2-3476,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Voyages" href="http://www.lemonde.fr/rss/sequence/0,2-3546,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Livres" href="http://www.lemonde.fr/rss/sequence/0,2-3260,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Examens" href="http://www.lemonde.fr/rss/sequence/0,2-3404,1-0,0.xml"><link rel="alternate" type="application/rss+xml" title="Le Monde.fr: Le Grenelle de l'environnement" href="http://www.lemonde.fr/rss/sequence/0,2-959155,1-0,0.xml"> <meta name="KEYWORDS" content="LE MONDE, INFORMATIONS, INFOS, QUOTIDIEN, DAILY NEWS, PRESSE, PRESS, NEWS, FRANCE,
13
+ FRENCH, DOSSIERS, ECONOMIE, ECONOMY, CULTURE, INTERNATIONAL, BOURSE, CINEMA, MOVIES, LIVRES, BOOKS,
14
+ MULTIMEDIA, EDUCATION, FORUMS, FORUM, SERVICES, ABONNEMENTS, BOUTIQUE, EMPLOI, EXPOSITIONS, FESTIVALS,
15
+ SPORT, MAGAZINE, EUROPEEN, DIPLOMATIQUE, PARTENAIRES, PUBLICITE, LETTRES D'INFORMATIONS, NEWSLETTERS,
16
+ JOURNAL EN LIGNE, LE MONDE ON LINE, VERSION PALM, VERSION MOBILES, MOBILE SERVICES, METEO, ARCHIVES,
17
17
  DOCUMENTATION, NOUVELLES TECHNOLOGIES, HIGH TECH, TRADUCTEUR, TRANSLATOR">
18
18
  <meta name="DC.format" content="text/html" />
19
19
  <meta name="DC.language" content="fr" />
20
20
  <meta name="DC.publisher" content="Le Monde" />
21
21
  <meta name="DC.identifier" content="ISSN 1950-6244"/>
22
-
22
+
23
23
  <link rel="stylesheet" type="text/css" href="http://medias.lemonde.fr/mmpub/css/commun.css">
24
- <link rel="stylesheet" type="text/css" href="http://medias.lemonde.fr/mmpub/css/commun-gr.css">
24
+ <link rel="stylesheet" type="text/css" href="http://medias.lemonde.fr/mmpub/css/commun-gr.css">
25
25
  <link rel="stylesheet" type="text/css" href="http://medias.lemonde.fr/mmpub/css/www.css">
26
26
  <link type="text/css" rel="stylesheet" href="http://medias.lemonde.fr/mmpub/css/une.css">
27
27
  </head>
28
28
  <body bgcolor=FFFFFF leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" >
29
-
29
+
30
30
  <script language="JavaScript">
31
31
  <!--
32
32
 
@@ -163,12 +163,12 @@ function OAS_AD(pos) {
163
163
  </SCRIPT><!------ OAS SETUP end ------>
164
164
  <script src="http://medias.lemonde.fr/mmpub/js/wousdat.js"></script><script language=JavaScript>OAS_AD('x10');</script>
165
165
  <script language=JavaScript>OAS_AD('x01');</script>
166
- <!-- gab-sq-home.php -->
166
+ <!-- gab-sq-home.php -->
167
167
  <!-- gab-ssq-bandeau_haut_home.php -->
168
168
  <table width="1000" cellpadding="0" cellspacing="0" border="0" class=tete>
169
169
  <tr>
170
- <td width=340 align=center>
171
- <a href=/web/sequence/0,2-3208,1-0,0.html><img src='http://medias.lemonde.fr/mmpub/img/lgo/lemondefr_grd.gif' alt='LeMonde.fr' border='0'></a><br><span class=tt-dt>Mise � jour � <font color=#990000><b>15 h 44 </b></font> - Paris</span>
170
+ <td width=340 align=center>
171
+ <a href=/web/sequence/0,2-3208,1-0,0.html><img src='http://medias.lemonde.fr/mmpub/img/lgo/lemondefr_grd.gif' alt='LeMonde.fr' border='0'></a><br><span class=tt-dt>Mise � jour � <font color=#990000><b>15 h 44 </b></font> - Paris</span>
172
172
  </td>
173
173
  <td style="border-right: solid 1px white" >
174
174
  <!--- gab-pv-barre_recherche_ref.php --->
@@ -177,21 +177,21 @@ function OAS_AD(pos) {
177
177
 
178
178
  function affAboJournal() {
179
179
  var contenu = "";
180
- contenu += "<a href=\"http://eu.link.decdna.net/n/14763/31113/www.lemonde.fr/10av5o1;11;4;;690;;689zdb;;;;;1;/i/c?0&pq=%2fabojournal%2f%3fxtor%3dAL%2d32280085\" target=\"_blank\">&raquo; Abonnez-vous au journal �<br /><span style=\"padding-left: 10px\"><i>Le Monde</i> : 16�/mois</span></a>";
180
+ contenu += "<a href=\"http://eu.link.decdna.net/n/14763/31113/www.lemonde.fr/10av5o1;11;4;;690;;689zdb;;;;;1;/i/c?0&pq=%2fabojournal%2f%3fxtor%3dAL%2d32280085\" target=\"_blank\">&raquo; Abonnez-vous au journal �<br /><span style=\"padding-left: 10px\"><i>Le Monde</i> : 16�/mois</span></a>";
181
181
  document.write(contenu);
182
-
182
+
183
183
  }
184
184
 
185
- function trim(chaine) {
186
- // espaces au debut
187
- while (chaine.substring(0,1) == ' ')
185
+ function trim(chaine) {
186
+ // espaces au debut
187
+ while (chaine.substring(0,1) == ' ')
188
188
  chaine = chaine.substring(1, chaine.length);
189
189
 
190
- // espaces a la fin
190
+ // espaces a la fin
191
191
  while (chaine.substring(chaine.length-1,chaine.length) == ' ')
192
192
  chaine = chaine.substring(0, chaine.length-1);
193
193
  return chaine;
194
- }
194
+ }
195
195
 
196
196
  function ValideRechercheSimple(leForm) {
197
197
 
@@ -199,7 +199,7 @@ function ValideRechercheSimple(leForm) {
199
199
  var eAccentAigu = "e";
200
200
  var eAccentCirc = "e";
201
201
  var aAccentGrav = "a";
202
-
202
+
203
203
 
204
204
  //On teste si le javascript >= 1.2
205
205
  if ((String.fromCharCode(232))!=false && (String.fromCharCode(232))!=null) {
@@ -231,11 +231,11 @@ function ValideRechercheSimple(leForm) {
231
231
  // leForm.query.focus();
232
232
  // return false;
233
233
  //}
234
-
234
+
235
235
  return true;
236
236
 
237
237
 
238
-
238
+
239
239
  }
240
240
 
241
241
  //fonction de masquage des element en fonction du click sur les bouton radio
@@ -243,21 +243,21 @@ function showHide(param) {
243
243
  var zoneSaisie = document.getElementById('query');
244
244
  var zoneListe = document.getElementById('col_periode');
245
245
  switch (param) {
246
-
246
+
247
247
  case 0:
248
-
248
+
249
249
  zoneSaisie.setAttribute('size',34);
250
250
  zoneListe.style.visibility='';
251
251
  zoneListe.style.display="inline";
252
252
  document.getElementById('formrech').setAttribute('target','');
253
253
  break;
254
254
  case 1:
255
-
255
+
256
256
  zoneSaisie.setAttribute('size',53);
257
257
  zoneListe.style.visibility ="hidden";
258
258
  zoneListe.style.display="none";
259
259
  document.getElementById('formrech').setAttribute('target','_blank');
260
-
260
+
261
261
  break;
262
262
  }
263
263
  }
@@ -265,25 +265,25 @@ function showHide(param) {
265
265
  </script>
266
266
 
267
267
  <form id="formrech" method="get" action="http://www.lemonde.fr/web/recherche_resultats/1,13-0,1-0,0.html" name="recherche_simple" onsubmit="return ValideRechercheSimple(this)">
268
-
268
+
269
269
  <input type="hidden" name="dans" value="dansarticle">
270
270
  <input type="hidden" name="num_page" value="1">
271
271
  <input type="hidden" name="booleen" value="et">
272
- <input type="hidden" name="ordre" value="pertinence">
272
+ <input type="hidden" name="ordre" value="pertinence">
273
273
  <table cellpadding=0 width=310 cellspacing=3 border=0 class=tete3 >
274
274
  <tr valign=top>
275
275
  <td><span class="rec"><b>Recherchez</b></span><br>
276
276
  <input type="text" name="query" value="" size="34" maxlength="40" id="query"></td>
277
277
  <td nowrap valign="bottom">
278
278
  <span id="col_periode">depuis<br>
279
- <select name="periode">
279
+ <select name="periode">
280
280
  <option value="1" >aujourd'hui
281
281
  <option value="7" >7 jours
282
282
  <option value="30" selected>1 mois
283
283
  <option value="365" >1 an
284
284
  <option value="1987" >d&eacute;tailler
285
285
  </select>
286
- </span>
286
+ </span>
287
287
  <input type="image" src="http://medias.lemonde.fr/mmpub/img/bt/rech.gif" alt="Valider" align="absmiddle">
288
288
 
289
289
  </td>
@@ -291,15 +291,15 @@ function showHide(param) {
291
291
  <tr>
292
292
  <td colspan="3">
293
293
  <input name="sur" type="radio" value="LEMONDE" checked="checked" onclick="showHide(0);">sur Le Monde.fr
294
-
294
+
295
295
  <input name="sur" type="radio" value="YAHOO" onclick="showHide(1);"><img src="http://medias.lemonde.fr/mmpub/img/lgo/yahoosearch-gratuit-182x17.gif" alt="Yahoo!" align="middle">
296
-
297
-
298
-
296
+
297
+
298
+
299
299
  </td>
300
300
  </tr>
301
- <!--<tr><td colspan=2><a href="http://www.lemonde.fr/web/recherche/0,13-0,1-0,0.html">&raquo; Acc�dez aux archives du Monde</a></td></tr>-->
302
- </table>
301
+ <!--<tr><td colspan=2><a href="http://www.lemonde.fr/web/recherche/0,13-0,1-0,0.html">&raquo; Acc�dez aux archives du Monde</a></td></tr>-->
302
+ </table>
303
303
  <table cellpadding="0" width="100%" cellspacing="5" border="0" bgcolor="#CECECE"> <tr> <td width="50%" valign="top"><a href="http://www.lemonde.fr/web/inscription_newsletter/1,27-0,1-0,0.html" onclick="xt_clic('N','Recevoir newsletters Home')" style="color: #990000;">&raquo; Recevez les newsletters<br /><span style="padding-left: 10px">gratuites</span></a></td> <td width="50%" valign="top"><script language="javascript">affAboJournal();</script></td> </tr></table></form>
304
304
  <!--- / gab-pv-barre_recherche_ref.php --->
305
305
 
@@ -310,12 +310,12 @@ function showHide(param) {
310
310
  <td valign=middle width=140>
311
311
  <!-- gab-pv-barre_login_perso.php -->
312
312
  <script language=javascript src=http://www.lemonde.fr/web/barre_login/0,0-0,1-0,0.js></script><!--/ gab-pv-barre_login_perso.php -->
313
-
313
+
314
314
  </td>
315
315
  </tr></table>
316
316
  <!-- /gab-ssq-bandeau_haut_home.php -->
317
317
  <!-- gab-ssq-insert_page_partagee.php -->
318
- <!-- d�but insertion page partagee http://www.lemonde.fr/web/page_partagee/0,15-8,1-0,0.html --><!-- Rosae:: vendredi 2 novembre 2007 17:51:45.20561 4.354 terre -->
318
+ <!-- d�but insertion page partagee http://www.lemonde.fr/web/page_partagee/0,15-8,1-0,0.html --><!-- Rosae:: vendredi 2 novembre 2007 17:51:45.20561 4.354 terre -->
319
319
  <script language="JavaScript1.1">
320
320
  <!--
321
321
  function xt_clic(typecl,page,url,nvlle)
@@ -346,85 +346,85 @@ else
346
346
  <script language="javascript" src="http://medias.lemonde.fr/mmpub/js/nav.js"></script>
347
347
  <script language="JavaScript1.1">
348
348
  <!--
349
- var gl_Refitemid2annonceid = new Array();
350
- gl_Refitemid2annonceid[3208] = "m_ann_1136";
351
- gl_Refitemid2annonceid[3210] = "m_ann_1129";
352
- gl_Refitemid2annonceid[3214] = "m_ann_1129";
353
- gl_Refitemid2annonceid[823448] = "m_ann_1129";
354
- gl_Refitemid2annonceid[3224] = "m_ann_1129";
355
- gl_Refitemid2annonceid[3382] = "m_ann_1129";
356
- gl_Refitemid2annonceid[3234] = "m_ann_1129";
357
- gl_Refitemid2annonceid[3236] = "m_ann_1129";
358
- gl_Refitemid2annonceid[3238] = "m_ann_1129";
359
- gl_Refitemid2annonceid[3242] = "m_ann_1129";
360
- gl_Refitemid2annonceid[3244] = "m_ann_1129";
361
- gl_Refitemid2annonceid[3246] = "m_ann_1138";
362
- gl_Refitemid2annonceid[3232] = "m_ann_1130";
363
- gl_Refitemid2annonceid[3476] = "m_ann_1138";
364
- gl_Refitemid2annonceid[3260] = "m_ann_1138";
365
- gl_Refitemid2annonceid[3546] = "m_ann_1138";
366
- gl_Refitemid2annonceid[651865] = "m_ann_1138";
367
- gl_Refitemid2annonceid[3404] = "m_ann_1138";
368
- gl_Refitemid2annonceid[3328] = "m_ann_1138";
369
- gl_Refitemid2annonceid[3280] = "m_ann_1138";
370
- var gl_Label2annonceid = new Array();
371
- gl_Label2annonceid['les_videos'] = "m_ann_1129";
372
- gl_Label2annonceid['rss'] = "m_ann_1129";
373
- gl_Label2annonceid['blogs'] = "m_ann_1130";
374
- gl_Label2annonceid['chats'] = "m_ann_1130";
375
- gl_Label2annonceid['votreavis'] = "m_ann_1130";
376
- gl_Label2annonceid['meteo'] = "m_ann_1138";
377
- gl_Label2annonceid['traficidf'] = "m_ann_1138";
378
- gl_Label2annonceid['desk'] = "m_ann_1140";
379
- gl_Label2annonceid['actuimgs'] = "m_ann_1140";
380
- gl_Label2annonceid['depeches'] = "m_ann_1140";
381
- gl_Label2annonceid['videos'] = "m_ann_1140";
382
- gl_Label2annonceid['tstitres'] = "m_ann_1140";
383
- gl_Label2annonceid['une8'] = "m_ann_1140";
384
- gl_Label2annonceid['teaser'] = "m_ann_1140";
385
- gl_Label2annonceid['monde_pdf'] = "m_ann_1141";
386
- gl_Label2annonceid['kiosque_elpais'] = "m_ann_1141";
387
- gl_Label2annonceid['newsletter'] = "m_ann_1142";
388
- gl_Label2annonceid['multimedia'] = "m_ann_1143";
389
- gl_Label2annonceid['galerie'] = "m_ann_1143";
390
- gl_Label2annonceid['imgsdactu'] = "m_ann_1143";
391
- gl_Label2annonceid['sipa'] = "m_ann_1143";
392
- gl_Label2annonceid['bande_son'] = "m_ann_1143";
393
- gl_Label2annonceid['tld'] = "m_ann_1144";
394
- gl_Label2annonceid['tdm'] = "m_ann_1144";
395
- gl_Label2annonceid['tlr'] = "m_ann_1144";
396
- gl_Label2annonceid['cyberadresses'] = "m_ann_1144";
397
- gl_Label2annonceid['fichespays'] = "m_ann_1144";
398
- gl_Label2annonceid['education/bac_annales'] = "m_ann_1144";
399
- gl_Label2annonceid['education/bac_resultats'] = "m_ann_1144";
400
- gl_Label2annonceid['education/bac_corriges'] = "m_ann_1144";
401
- gl_Label2annonceid['elections'] = "m_ann_1144";
402
- gl_Label2annonceid['eco/etudes'] = "m_ann_1144";
403
- gl_Label2annonceid['liste_blogs'] = "m_ann_1130";
404
- gl_Label2annonceid['videos_n'] = "m_ann_1140";
405
- gl_Label2annonceid['videos_r'] = "m_ann_1140";
406
- gl_Label2annonceid['videos_w'] = "m_ann_1140";
407
- gl_Label2annonceid['article_dossier'] = "m_ann_1144";
408
- gl_Label2annonceid['dossier'] = "m_ann_1144";
409
- gl_Label2annonceid['article_theme'] = "m_ann_1144";
410
- gl_Label2annonceid['thematique'] = "m_ann_1144";
411
- gl_Label2annonceid['module_repere'] = "m_ann_1144";
412
- gl_Label2annonceid['article_fichespays'] = "m_ann_1144";
413
- gl_Label2annonceid['elections/liste_circ'] = "m_ann_1144";
414
- gl_Label2annonceid['elections/recherche'] = "m_ann_1144";
415
- gl_Label2annonceid['elections/resultat'] = "m_ann_1144";
416
- var gl_refitemidsubsequence2annonceid = new Array();
417
- gl_refitemidsubsequence2annonceid['3212'] = "m_ann_1129";
418
- gl_refitemidsubsequence2annonceid['3222'] = "m_ann_1129";
419
- gl_refitemidsubsequence2annonceid['3216'] = "m_ann_1129";
420
- gl_refitemidsubsequence2annonceid['3218'] = "m_ann_1129";
421
- gl_refitemidsubsequence2annonceid['3220'] = "m_ann_1129";
422
- gl_refitemidsubsequence2annonceid['3548'] = "m_ann_1138";
423
- gl_refitemidsubsequence2annonceid['3550'] = "m_ann_1138";
424
- gl_refitemidsubsequence2annonceid['3558'] = "m_ann_1138";
425
- gl_refitemidsubsequence2annonceid['3556'] = "m_ann_1138";
426
- gl_refitemidsubsequence2annonceid['3552'] = "m_ann_1138";
427
- gl_refitemidsubsequence2annonceid['3554'] = "m_ann_1138";
349
+ var gl_Refitemid2annonceid = new Array();
350
+ gl_Refitemid2annonceid[3208] = "m_ann_1136";
351
+ gl_Refitemid2annonceid[3210] = "m_ann_1129";
352
+ gl_Refitemid2annonceid[3214] = "m_ann_1129";
353
+ gl_Refitemid2annonceid[823448] = "m_ann_1129";
354
+ gl_Refitemid2annonceid[3224] = "m_ann_1129";
355
+ gl_Refitemid2annonceid[3382] = "m_ann_1129";
356
+ gl_Refitemid2annonceid[3234] = "m_ann_1129";
357
+ gl_Refitemid2annonceid[3236] = "m_ann_1129";
358
+ gl_Refitemid2annonceid[3238] = "m_ann_1129";
359
+ gl_Refitemid2annonceid[3242] = "m_ann_1129";
360
+ gl_Refitemid2annonceid[3244] = "m_ann_1129";
361
+ gl_Refitemid2annonceid[3246] = "m_ann_1138";
362
+ gl_Refitemid2annonceid[3232] = "m_ann_1130";
363
+ gl_Refitemid2annonceid[3476] = "m_ann_1138";
364
+ gl_Refitemid2annonceid[3260] = "m_ann_1138";
365
+ gl_Refitemid2annonceid[3546] = "m_ann_1138";
366
+ gl_Refitemid2annonceid[651865] = "m_ann_1138";
367
+ gl_Refitemid2annonceid[3404] = "m_ann_1138";
368
+ gl_Refitemid2annonceid[3328] = "m_ann_1138";
369
+ gl_Refitemid2annonceid[3280] = "m_ann_1138";
370
+ var gl_Label2annonceid = new Array();
371
+ gl_Label2annonceid['les_videos'] = "m_ann_1129";
372
+ gl_Label2annonceid['rss'] = "m_ann_1129";
373
+ gl_Label2annonceid['blogs'] = "m_ann_1130";
374
+ gl_Label2annonceid['chats'] = "m_ann_1130";
375
+ gl_Label2annonceid['votreavis'] = "m_ann_1130";
376
+ gl_Label2annonceid['meteo'] = "m_ann_1138";
377
+ gl_Label2annonceid['traficidf'] = "m_ann_1138";
378
+ gl_Label2annonceid['desk'] = "m_ann_1140";
379
+ gl_Label2annonceid['actuimgs'] = "m_ann_1140";
380
+ gl_Label2annonceid['depeches'] = "m_ann_1140";
381
+ gl_Label2annonceid['videos'] = "m_ann_1140";
382
+ gl_Label2annonceid['tstitres'] = "m_ann_1140";
383
+ gl_Label2annonceid['une8'] = "m_ann_1140";
384
+ gl_Label2annonceid['teaser'] = "m_ann_1140";
385
+ gl_Label2annonceid['monde_pdf'] = "m_ann_1141";
386
+ gl_Label2annonceid['kiosque_elpais'] = "m_ann_1141";
387
+ gl_Label2annonceid['newsletter'] = "m_ann_1142";
388
+ gl_Label2annonceid['multimedia'] = "m_ann_1143";
389
+ gl_Label2annonceid['galerie'] = "m_ann_1143";
390
+ gl_Label2annonceid['imgsdactu'] = "m_ann_1143";
391
+ gl_Label2annonceid['sipa'] = "m_ann_1143";
392
+ gl_Label2annonceid['bande_son'] = "m_ann_1143";
393
+ gl_Label2annonceid['tld'] = "m_ann_1144";
394
+ gl_Label2annonceid['tdm'] = "m_ann_1144";
395
+ gl_Label2annonceid['tlr'] = "m_ann_1144";
396
+ gl_Label2annonceid['cyberadresses'] = "m_ann_1144";
397
+ gl_Label2annonceid['fichespays'] = "m_ann_1144";
398
+ gl_Label2annonceid['education/bac_annales'] = "m_ann_1144";
399
+ gl_Label2annonceid['education/bac_resultats'] = "m_ann_1144";
400
+ gl_Label2annonceid['education/bac_corriges'] = "m_ann_1144";
401
+ gl_Label2annonceid['elections'] = "m_ann_1144";
402
+ gl_Label2annonceid['eco/etudes'] = "m_ann_1144";
403
+ gl_Label2annonceid['liste_blogs'] = "m_ann_1130";
404
+ gl_Label2annonceid['videos_n'] = "m_ann_1140";
405
+ gl_Label2annonceid['videos_r'] = "m_ann_1140";
406
+ gl_Label2annonceid['videos_w'] = "m_ann_1140";
407
+ gl_Label2annonceid['article_dossier'] = "m_ann_1144";
408
+ gl_Label2annonceid['dossier'] = "m_ann_1144";
409
+ gl_Label2annonceid['article_theme'] = "m_ann_1144";
410
+ gl_Label2annonceid['thematique'] = "m_ann_1144";
411
+ gl_Label2annonceid['module_repere'] = "m_ann_1144";
412
+ gl_Label2annonceid['article_fichespays'] = "m_ann_1144";
413
+ gl_Label2annonceid['elections/liste_circ'] = "m_ann_1144";
414
+ gl_Label2annonceid['elections/recherche'] = "m_ann_1144";
415
+ gl_Label2annonceid['elections/resultat'] = "m_ann_1144";
416
+ var gl_refitemidsubsequence2annonceid = new Array();
417
+ gl_refitemidsubsequence2annonceid['3212'] = "m_ann_1129";
418
+ gl_refitemidsubsequence2annonceid['3222'] = "m_ann_1129";
419
+ gl_refitemidsubsequence2annonceid['3216'] = "m_ann_1129";
420
+ gl_refitemidsubsequence2annonceid['3218'] = "m_ann_1129";
421
+ gl_refitemidsubsequence2annonceid['3220'] = "m_ann_1129";
422
+ gl_refitemidsubsequence2annonceid['3548'] = "m_ann_1138";
423
+ gl_refitemidsubsequence2annonceid['3550'] = "m_ann_1138";
424
+ gl_refitemidsubsequence2annonceid['3558'] = "m_ann_1138";
425
+ gl_refitemidsubsequence2annonceid['3556'] = "m_ann_1138";
426
+ gl_refitemidsubsequence2annonceid['3552'] = "m_ann_1138";
427
+ gl_refitemidsubsequence2annonceid['3554'] = "m_ann_1138";
428
428
  if (typeof highlight_menu != "undefined")
429
429
  {
430
430
  if(navigator.appName == 'Microsoft Internet Explorer')
@@ -454,11 +454,11 @@ else
454
454
 
455
455
  <div align=left><table bgcolor="#132d46" border="0" cellpadding="0" cellspacing="0" width="723">
456
456
  <tbody>
457
- <tr>
457
+ <tr>
458
458
  <td id="m_ann_1136"><a href="http://www.lemonde.fr/web/sequence/0,2-3208,1-0,0.html" onclick="xt_clic('N','Home')" onmouseover="showMenu('ann_1136');" onmouseout="hideMenu('ann_1136');"><img src="http://medias.lemonde.fr/mmpub/img/tit/nav-une.gif" alt="Home" border="0" height="27"></a></td><td id="m_ann_1129"><a href="http://www.lemonde.fr/web/sequence/0,2-3208,1-0,0.html" onclick="xt_clic('N','Actualites')" onmouseover="showMenu('ann_1129');" onmouseout="hideMenu('ann_1129');"><img src="http://medias.lemonde.fr/mmpub/img/tit/nav-act.gif" alt="Actualit&eacute;s" border="0" height="27"></a></td><td id="m_ann_1130"><a href="http://www.lemonde.fr/web/sequence/0,2-3232,1-0,0.html" onclick="xt_clic('N','Perspectives')" onmouseover="showMenu('ann_1130');" onmouseout="hideMenu('ann_1130');"><img src="http://medias.lemonde.fr/mmpub/img/tit/nav-per.gif" alt="Perspectives" border="0" height="27"></a></td><td id="m_ann_1138"><a href="http://www.lemonde.fr/web/meteo/0,31-0,42-0,0.html" onclick="xt_clic('N','Pratique')" onmouseover="showMenu('ann_1138');" onmouseout="hideMenu('ann_1138');"><img src="http://medias.lemonde.fr/mmpub/img/tit/nav-vie.gif" alt="Pratique" border="0" height="27"></a></td><td id="m_ann_1139"><a href="http://www.talents.fr/web/sequence/0,2-3504,1-0,0.html" onclick="xt_clic('S','Annonces')" target="_blank" onmouseover="showMenu('ann_1139');" onmouseout="hideMenu('ann_1139');"><img src="http://medias.lemonde.fr/mmpub/img/tit/nav-ann.gif" alt="Annonces" border="0" height="27"></a></td><td id="m_ann_1140"><a href="http://abonnes.lemonde.fr/web/desk/0,26-3424,1-0,0.html" onclick="xt_clic('N','Le Desk')" onmouseover="showMenu('ann_1140');" onmouseout="hideMenu('ann_1140');"><img src="http://medias.lemonde.fr/mmpub/img/tit/nav-desk.gif" alt="Le Desk" border="0" height="27"></a></td><td id="m_ann_1141"><a href="http://abonnes.lemonde.fr/web/monde_pdf/0,33-0,1-0,0.html" onclick="xt_clic('N','Le Kiosque')" onmouseover="showMenu('ann_1141');" onmouseout="hideMenu('ann_1141');"><img src="http://medias.lemonde.fr/mmpub/img/tit/nav-kio.gif" alt="Le Kiosque" border="0" height="27"></a></td><td id="m_ann_1142"><a href="http://abonnes.lemonde.fr/web/newsletter/0,30-0,62-0@60-7@45-2,0.html" onclick="xt_clic('N','Newsletters')" onmouseover="showMenu('ann_1142');" onmouseout="hideMenu('ann_1142');"><img src="http://medias.lemonde.fr/mmpub/img/tit/nav-news.gif" alt="Newsletters" border="0" height="27"></a></td><td id="m_ann_1143"><a href="http://abonnes.lemonde.fr/web/multimedia/0,45-0,1-0,0.html" onclick="xt_clic('N','Multimedia')" onmouseover="showMenu('ann_1143');" onmouseout="hideMenu('ann_1143');"><img src="http://medias.lemonde.fr/mmpub/img/tit/nav-mul.gif" alt="Multim&eacute;dia" border="0" height="27"></a></td><td id="m_ann_1144"><a href="http://abonnes.lemonde.fr/web/tld/0,3-0,14-0,0.html" onclick="xt_clic('N','References')" onmouseover="showMenu('ann_1144');" onmouseout="hideMenu('ann_1144');"><img src="http://medias.lemonde.fr/mmpub/img/tit/nav-ref.gif" alt="R&eacute;f&eacute;rences" border="0" height="27"></a></td><td id="m_abogold1" style="display:none"><a href="http://www.lemonde.fr/web/abonnement/&clef=BOUTONABOGOLD1" onclick="xt_clic('N','Abonnez-vous1')"><img src="http://medias.lemonde.fr/mmpub/img/tit/bt-abogold1.gif" alt="Abonnez-vous" border="0" height="27"></a></td><td id="m_abogold2" style="display:none"><a href="http://www.lemonde.fr/web/abonnement/&clef=BOUTONABOGOLD2" onclick="xt_clic('N','Abonnez-vous2')"><img src="http://medias.lemonde.fr/mmpub/img/tit/bt-abogold2.gif" alt="Abonnez-vous" border="0" height="27"></a></td>
459
459
  </tr>
460
460
  </tbody>
461
- </table><div id="mc_ann_1136" class="nv-gr-2" onmouseover="showMenu('ann_1136');" onmouseout="hideMenu('ann_1136');"></div><div id="mc_ann_1129" class="nv-gr-2" onmouseover="showMenu('ann_1129');" onmouseout="hideMenu('ann_1129');"><div id="ann_1129_1131" class="nv-gr" onmouseover="bgOn('ann_1129_1131');" onmouseout="bgOff('ann_1129_1131');" onclick="xt_clic('N','A la Une');window.location='http://www.lemonde.fr/web/sequence/0,2-3208,1-0,0.html'">A la Une</div><div id="ann_1129_1132" class="nv-ab" onmouseover="bgOn('ann_1129_1132');" onmouseout="bgOff('ann_1129_1132');" onclick="xt_clic('N','Le Desk');window.location='http://abonnes.lemonde.fr/web/desk/0,26-3424,1-0,0.html'">Le Desk</div><div id="ann_1129_845873" class="nv-gr" onmouseover="bgOn('ann_1129_845873');" onmouseout="bgOff('ann_1129_845873');" onclick="xt_clic('N','Videos');window.location='http://www.lemonde.fr/web/les_videos/0,59-0,64-882644,0.html'">Vid�os</div><div id="ann_1129_1133" class="nv-gr" onmouseover="bgOn('ann_1129_1133');" onmouseout="bgOff('ann_1129_1133');" onclick="xt_clic('N','International');window.location='http://www.lemonde.fr/web/sequence/0,2-3210,1-0,0.html'">International</div><div id="ann_1129_1224" class="nv-gr" onmouseover="bgOn('ann_1129_1224');" onmouseout="bgOff('ann_1129_1224');" onclick="xt_clic('N','Europe');window.location='http://www.lemonde.fr/web/sequence/0,2-3214,1-0,0.html'">Europe</div><div id="ann_1129_961459" class="nv-gr" onmouseover="bgOn('ann_1129_961459');" onmouseout="bgOff('ann_1129_961459');" onclick="xt_clic('N','Politique');window.location='http://www.lemonde.fr/web/sequence/0,2-823448,1-0,0.html'">Politique</div><div id="ann_1129_1226" class="nv-gr" onmouseover="bgOn('ann_1129_1226');" onmouseout="bgOff('ann_1129_1226');" onclick="xt_clic('N','Societe');window.location='http://www.lemonde.fr/web/sequence/0,2-3224,1-0,0.html'">Soci�t�</div><div id="ann_1129_629295" class="nv-gr" onmouseover="bgOn('ann_1129_629295');" onmouseout="bgOff('ann_1129_629295');" onclick="xt_clic('N','Carnet');window.location='http://www.lemonde.fr/web/sequence/0,2-3382,1-0,0.html'">Carnet</div><div id="ann_1129_1228" class="nv-gr" onmouseover="bgOn('ann_1129_1228');" onmouseout="bgOff('ann_1129_1228');" onclick="xt_clic('N','Economie');window.location='http://www.lemonde.fr/web/sequence/0,2-3234,1-0,0.html'">Economie</div><div id="ann_1129_1229" class="nv-gr" onmouseover="bgOn('ann_1129_1229');" onmouseout="bgOff('ann_1129_1229');" onclick="xt_clic('N','Medias');window.location='http://www.lemonde.fr/web/sequence/0,2-3236,1-0,0.html'">M�dias</div><div id="ann_1129_1235" class="nv-gr" onmouseover="bgOn('ann_1129_1235');" onmouseout="bgOff('ann_1129_1235');" onclick="xt_clic('N','Meteo');window.location='http://www.lemonde.fr/web/meteo/0,31-0,42-0,0.html'">M�t�o</div><div id="ann_1129_1230" class="nv-gr" onmouseover="bgOn('ann_1129_1230');" onmouseout="bgOff('ann_1129_1230');" onclick="xt_clic('N','Rendez-vous');window.location='http://www.lemonde.fr/web/sequence/0,2-3238,1-0,0.html'">Rendez-vous</div><div id="ann_1129_1231" class="nv-gr" onmouseover="bgOn('ann_1129_1231');" onmouseout="bgOff('ann_1129_1231');" onclick="xt_clic('N','Sports');window.location='http://www.lemonde.fr/web/sequence/0,2-3242,1-0,0.html'">Sports</div><div id="ann_1129_1233" class="nv-gr" onmouseover="bgOn('ann_1129_1233');" onmouseout="bgOff('ann_1129_1233');" onclick="xt_clic('N','Environnement, Sciences');window.location='http://www.lemonde.fr/web/sequence/0,2-3244,1-0,0.html'">Environnement, Sciences</div><div id="ann_1129_743034" class="nv-gr" onmouseover="bgOn('ann_1129_743034');" onmouseout="bgOff('ann_1129_743034');" onclick="xt_clic('N','Technologies');window.location='http://www.lemonde.fr/web/sequence/0,2-651865,1-0,0.html'">Technologies</div><div id="ann_1129_1232" class="nv-gr" onmouseover="bgOn('ann_1129_1232');" onmouseout="bgOff('ann_1129_1232');" onclick="xt_clic('N','Culture');window.location='http://www.lemonde.fr/web/sequence/0,2-3246,1-0,0.html'">Culture</div><div id="ann_1129_944555" class="nv-gr" onmouseover="bgOn('ann_1129_944555');" onmouseout="bgOff('ann_1129_944555');" onclick="xt_clic('N','RSS');window.location='http://www.lemonde.fr/web/rss/0,48-0,1-0,0.html'">RSS</div></div><div id="mc_ann_1130" class="nv-gr-2" onmouseover="showMenu('ann_1130');" onmouseout="hideMenu('ann_1130');"><div id="ann_1130_1134" class="nv-gr" onmouseover="bgOn('ann_1130_1134');" onmouseout="bgOff('ann_1130_1134');" onclick="xt_clic('N','Opinions');window.location='http://www.lemonde.fr/web/sequence/0,2-3232,1-0,0.html'">Opinions</div><div id="ann_1130_1236" class="nv-gr" onmouseover="bgOn('ann_1130_1236');" onmouseout="bgOff('ann_1130_1236');" onclick="xt_clic('N','Blogs');window.location='http://www.lemonde.fr/web/blogs/0,39-0,48-0,0.html'">Blogs</div><div id="ann_1130_1135" class="nv-gr" onmouseover="bgOn('ann_1130_1135');" onmouseout="bgOff('ann_1130_1135');" onclick="xt_clic('S','Forums');window.open('http://forums.lemonde.fr')">Forums</div><div id="ann_1130_1201" class="nv-gr" onmouseover="bgOn('ann_1130_1201');" onmouseout="bgOff('ann_1130_1201');" onclick="xt_clic('N','Chats');window.location='http://www.lemonde.fr/web/chats/0,46-0,55-0,0.html'">Chats</div><div id="ann_1130_1237" class="nv-gr" onmouseover="bgOn('ann_1130_1237');" onmouseout="bgOff('ann_1130_1237');" onclick="xt_clic('N','Sondages');window.location='http://www.lemonde.fr/web/votreavis/0,25-0@2-3208,1-0,0.html'">Sondages</div></div><div id="mc_ann_1138" class="nv-gr-2" onmouseover="showMenu('ann_1138');" onmouseout="hideMenu('ann_1138');"><div id="ann_1138_1242" class="nv-gr" onmouseover="bgOn('ann_1138_1242');" onmouseout="bgOff('ann_1138_1242');" onclick="xt_clic('N','Meteo');window.location='http://www.lemonde.fr/web/meteo/0,31-0,42-0,0.html'">M�t�o</div><div id="ann_1138_1239" class="nv-gr" onmouseover="bgOn('ann_1138_1239');" onmouseout="bgOff('ann_1138_1239');" onclick="xt_clic('N','Cinema');window.location='http://www.lemonde.fr/web/sequence/0,2-3476,1-0,0.html'">Cin�ma</div><div id="ann_1138_1240" class="nv-gr" onmouseover="bgOn('ann_1138_1240');" onmouseout="bgOff('ann_1138_1240');" onclick="xt_clic('N','Livres');window.location='http://www.lemonde.fr/web/sequence/0,2-3260,1-0,0.html'">Livres</div><div id="ann_1138_1243" class="nv-gr" onmouseover="bgOn('ann_1138_1243');" onmouseout="bgOff('ann_1138_1243');" onclick="xt_clic('N','Voyages');window.location='http://www.lemonde.fr/web/sequence/0,2-3546,1-0,0.html'">Voyages</div><div id="ann_1138_700364" class="nv-gr" onmouseover="bgOn('ann_1138_700364');" onmouseout="bgOff('ann_1138_700364');" onclick="xt_clic('N','Technologies');window.location='http://www.lemonde.fr/web/sequence/0,2-651865,1-0,0.html'">Technologies</div><div id="ann_1138_737426" class="nv-gr" onmouseover="bgOn('ann_1138_737426');" onmouseout="bgOff('ann_1138_737426');" onclick="xt_clic('N','Trafic IDF');window.location='http://www.lemonde.fr/web/traficidf/0,53-0,1-0,0.html'">Trafic IDF</div><div id="ann_1138_625729" class="nv-gr" onmouseover="bgOn('ann_1138_625729');" onmouseout="bgOff('ann_1138_625729');" onclick="xt_clic('N','Examens 2007');window.location='http://www.lemonde.fr/web/sequence/0,2-3404,1-0,0.html'">Examens 2007</div><div id="ann_1138_1244" class="nv-gr" onmouseover="bgOn('ann_1138_1244');" onmouseout="bgOff('ann_1138_1244');" onclick="xt_clic('N','Savoirs');window.location='http://www.lemonde.fr/web/sequence/0,2-3328,1-0,0.html'">Savoirs</div><div id="ann_1138_1246" class="nv-gr" onmouseover="bgOn('ann_1138_1246');" onmouseout="bgOff('ann_1138_1246');" onclick="xt_clic('N','Jeux');window.location='http://www.lemonde.fr/web/sequence/0,2-3280,1-0,0.html'">Jeux</div><div id="ann_1138_761079" class="nv-gr" onmouseover="bgOn('ann_1138_761079');" onmouseout="bgOff('ann_1138_761079');" onclick="xt_clic('S','Shopping');window.open('http://shop.lemonde.fr')">Shopping</div><div id="ann_1138_928320" class="nv-gr" onmouseover="bgOn('ann_1138_928320');" onmouseout="bgOff('ann_1138_928320');" onclick="xt_clic('S','Le Monde');window.open('http://eu.link.decdna.net/n/14763/31113/www.lemonde.fr/1mpqoym;11;4;;690;;689z4l;;;;;1;/i/c?0&pq=%2fabojournal%2f%3fxtor%3dAL%2d32280084')">Abonnement journal <i>Le Monde</i></div><div id="ann_1138_956735" class="nv-gr" onmouseover="bgOn('ann_1138_956735');" onmouseout="bgOff('ann_1138_956735');" onclick="xt_clic('S','Monde');window.open('http://boutique.lemonde.fr/boutique/')">Boutique du <i>Monde</i></div><div id="ann_1138_625730" class="nv-gr" onmouseover="bgOn('ann_1138_625730');" onmouseout="bgOff('ann_1138_625730');" onclick="xt_clic('N','Aide');window.location='http://www.lemonde.fr/web/articleinteractif/0,41-0@2-3388,49-625731,0.html'">Aide</div></div><div id="mc_ann_1139" class="nv-gr-2" onmouseover="showMenu('ann_1139');" onmouseout="hideMenu('ann_1139');"><div id="ann_1139_1247" class="nv-gr" onmouseover="bgOn('ann_1139_1247');" onmouseout="bgOff('ann_1139_1247');" onclick="xt_clic('S','Emploi');window.open('http://www.talents.fr/web/sequence/0,2-3504,1-0,0.html')">Emploi</div><div id="ann_1139_676409" class="nv-gr" onmouseover="bgOn('ann_1139_676409');" onmouseout="bgOff('ann_1139_676409');" onclick="xt_clic('S','Formation');window.open('http://formation.talents.fr')">Formation</div><div id="ann_1139_726179" class="nv-gr" onmouseover="bgOn('ann_1139_726179');" onmouseout="bgOff('ann_1139_726179');" onclick="xt_clic('S','Rencontres');window.open('http://rencontres.lemonde.fr/?source=nav')">Rencontres</div><div id="ann_1139_1248" class="nv-gr" onmouseover="bgOn('ann_1139_1248');" onmouseout="bgOff('ann_1139_1248');" onclick="xt_clic('S','Immobilier');window.open('http://lemonde.immostreet.com')">Immobilier</div><div id="ann_1139_930635" class="nv-gr" onmouseover="bgOn('ann_1139_930635');" onmouseout="bgOff('ann_1139_930635');" onclick="xt_clic('S','Faire-part');window.open('http://fairepart.lemonde.fr/faire-part/accueil.html')">Faire-part</div><div id="ann_1139_631389" class="nv-gr" onmouseover="bgOn('ann_1139_631389');" onmouseout="bgOff('ann_1139_631389');" onclick="xt_clic('S','Nautisme');window.open('http://nautisme.lemonde.fr/')">Nautisme</div></div><div id="mc_ann_1140" class="nv-ab-2" onmouseover="showMenu('ann_1140');" onmouseout="hideMenu('ann_1140');"><div id="ann_1140_1202" class="nv-ab" onmouseover="bgOn('ann_1140_1202');" onmouseout="bgOff('ann_1140_1202');" onclick="xt_clic('N','Le Desk');window.location='http://abonnes.lemonde.fr/web/desk/0,26-3424,1-0,0.html'">Le Desk</div><div id="ann_1140_1207" class="nv-ab" onmouseover="bgOn('ann_1140_1207');" onmouseout="bgOff('ann_1140_1207');" onclick="xt_clic('N','Les images');window.location='http://abonnes.lemonde.fr/web/actuimgs/0,14-0,1-0,0.html'">Les images</div><div id="ann_1140_1208" class="nv-ab" onmouseover="bgOn('ann_1140_1208');" onmouseout="bgOff('ann_1140_1208');" onclick="xt_clic('N','Les depeches');window.location='http://abonnes.lemonde.fr/web/depeches/0,14-0,7-0,0.html'">Les d�p�ches</div><div id="ann_1140_1253" class="nv-ab" onmouseover="bgOn('ann_1140_1253');" onmouseout="bgOff('ann_1140_1253');" onclick="xt_clic('N','Les videos');window.location='http://abonnes.lemonde.fr/web/videos/0,26-0,59-0,0.html'">Les vid�os</div><div id="ann_1140_1209" class="nv-ab" onmouseover="bgOn('ann_1140_1209');" onmouseout="bgOff('ann_1140_1209');" onclick="xt_clic('N','Monde');window.location='http://abonnes.lemonde.fr/web/tstitres/0,26-0,45-0,0.html'">Le <i>Monde</i> en html</div><div id="ann_1140_1210" class="nv-ab" onmouseover="bgOn('ann_1140_1210');" onmouseout="bgOff('ann_1140_1210');" onclick="xt_clic('N','La Une en 8 clics');window.location='http://abonnes.lemonde.fr/web/une8/0,26-0,1-0,0.html'">La Une en 8 clics</div><div id="ann_1140_755961" class="nv-ab" onmouseover="bgOn('ann_1140_755961');" onmouseout="bgOff('ann_1140_755961');" onclick="xt_clic('N','Decouvrez');window.location='http://abonnes.lemonde.fr/web/teaser/1,22-0,1-0,0.html'"><span style="color: #990000;">D�couvrez<br/>l'�dition abonn�s</span></div></div><div id="mc_ann_1141" class="nv-ab-2" onmouseover="showMenu('ann_1141');" onmouseout="hideMenu('ann_1141');"><div id="ann_1141_1203" class="nv-ab" onmouseover="bgOn('ann_1141_1203');" onmouseout="bgOff('ann_1141_1203');" onclick="xt_clic('N','Monde');window.location='http://abonnes.lemonde.fr/web/tstitres/0,26-0,45-0,0.html'">Le <i>Monde</i> en html</div><div id="ann_1141_688060" class="nv-ab" onmouseover="bgOn('ann_1141_688060');" onmouseout="bgOff('ann_1141_688060');" onclick="xt_clic('N','ELPAISplus');window.location='http://abonnes.lemonde.fr/web/kiosque_elpais/0,50-0,1-0,0.html'">ELPAISplus</div><div id="ann_1141_755962" class="nv-ab" onmouseover="bgOn('ann_1141_755962');" onmouseout="bgOff('ann_1141_755962');" onclick="xt_clic('N','Decouvrez');window.location='http://abonnes.lemonde.fr/web/teaser/1,22-0,1-0,0.html'"><span style="color: #990000;">D�couvrez<br/>l'�dition abonn�s</span></div></div><div id="mc_ann_1142" class="nv-ab-2" onmouseover="showMenu('ann_1142');" onmouseout="hideMenu('ann_1142');"><div id="ann_1142_1223" class="nv-ab" onmouseover="bgOn('ann_1142_1223');" onmouseout="bgOff('ann_1142_1223');" onclick="xt_clic('N','Check-list');window.location='http://abonnes.lemonde.fr/web/newsletter/0,30-0,62-0@60-7@45-2,0.html'">Check-list</div><div id="ann_1142_1250" class="nv-ab" onmouseover="bgOn('ann_1142_1250');" onmouseout="bgOff('ann_1142_1250');" onclick="xt_clic('N','Que dit Le Monde&nbsp;?');window.location='http://abonnes.lemonde.fr/web/newsletter/0,30-0,62-0@60-20@45-2,0.html'">Que dit Le Monde&nbsp;?</div><div id="ann_1142_1251" class="nv-ab" onmouseover="bgOn('ann_1142_1251');" onmouseout="bgOff('ann_1142_1251');" onclick="xt_clic('N','La 12:15');window.location='http://abonnes.lemonde.fr/web/newsletter/0,30-0,62-0@60-22@45-2,0.html'">La 12:15</div><div id="ann_1142_1252" class="nv-ab" onmouseover="bgOn('ann_1142_1252');" onmouseout="bgOff('ann_1142_1252');" onclick="xt_clic('N','Les titres du jour');window.location='http://abonnes.lemonde.fr/web/newsletter/0,30-0,62-0@60-5@45-2,0.html'">Les titres du jour</div><div id="ann_1142_845966" class="nv-ab" onmouseover="bgOn('ann_1142_845966');" onmouseout="bgOff('ann_1142_845966');" onclick="xt_clic('N','Examens 2007');window.location='http://abonnes.lemonde.fr/web/newsletter/0,30-0,62-0@60-6@45-2,0.html'">Examens 2007</div><div id="ann_1142_755963" class="nv-ab" onmouseover="bgOn('ann_1142_755963');" onmouseout="bgOff('ann_1142_755963');" onclick="xt_clic('N','Decouvrez');window.location='http://abonnes.lemonde.fr/web/teaser/1,22-0,1-0,0.html'"><span style="color: #990000;">D�couvrez<br/>l'�dition abonn�s</span></div></div><div id="mc_ann_1143" class="nv-ab-2" onmouseover="showMenu('ann_1143');" onmouseout="hideMenu('ann_1143');"><div id="ann_1143_1211" class="nv-ab" onmouseover="bgOn('ann_1143_1211');" onmouseout="bgOff('ann_1143_1211');" onclick="xt_clic('N','Multimedia');window.location='http://abonnes.lemonde.fr/web/multimedia/0,45-0,1-0,0.html'">Multim�dia</div><div id="ann_1143_1212" class="nv-ab" onmouseover="bgOn('ann_1143_1212');" onmouseout="bgOff('ann_1143_1212');" onclick="xt_clic('N','Dessins');window.location='http://abonnes.lemonde.fr/web/galerie/0,29-0,31-0,0.html'">Dessins</div><div id="ann_1143_1213" class="nv-ab" onmouseover="bgOn('ann_1143_1213');" onmouseout="bgOff('ann_1143_1213');" onclick="xt_clic('N','Images du jour');window.location='http://abonnes.lemonde.fr/web/imgsdactu/0,29-0,31-0,0.html'">Images du jour</div><div id="ann_1143_934459" class="nv-ab" onmouseover="bgOn('ann_1143_934459');" onmouseout="bgOff('ann_1143_934459');" onclick="xt_clic('N','Galerie SIPA');window.location='http://abonnes.lemonde.fr/web/sipa/0,29-0,31-0,0.html'">Galerie SIPA</div><div id="ann_1143_1245" class="nv-ab" onmouseover="bgOn('ann_1143_1245');" onmouseout="bgOff('ann_1143_1245');" onclick="xt_clic('N','Bande-son');window.location='http://abonnes.lemonde.fr/web/bande_son/0,34-0,1-0,0.html'">Bande-son</div><div id="ann_1143_755964" class="nv-ab" onmouseover="bgOn('ann_1143_755964');" onmouseout="bgOff('ann_1143_755964');" onclick="xt_clic('N','Decouvrez');window.location='http://abonnes.lemonde.fr/web/teaser/1,22-0,1-0,0.html'"><span style="color: #990000;">D�couvrez<br/>l'�dition abonn�s</span></div></div><div id="mc_ann_1144" class="nv-ab-2" onmouseover="showMenu('ann_1144');" onmouseout="hideMenu('ann_1144');"><div id="ann_1144_1216" class="nv-ab" onmouseover="bgOn('ann_1144_1216');" onmouseout="bgOff('ann_1144_1216');" onclick="xt_clic('N','Dossiers');window.location='http://abonnes.lemonde.fr/web/tld/0,3-0,14-0,0.html'">Dossiers</div><div id="ann_1144_1217" class="nv-ab" onmouseover="bgOn('ann_1144_1217');" onmouseout="bgOff('ann_1144_1217');" onclick="xt_clic('N','Thematiques');window.location='http://abonnes.lemonde.fr/web/tdm/0,42-0,53-0,0.html'">Th�matiques</div><div id="ann_1144_1218" class="nv-ab" onmouseover="bgOn('ann_1144_1218');" onmouseout="bgOff('ann_1144_1218');" onclick="xt_clic('N','Reperes');window.location='http://abonnes.lemonde.fr/web/tlr/0,11-0,32-0,0.html'">Rep�res</div><div id="ann_1144_1219" class="nv-ab" onmouseover="bgOn('ann_1144_1219');" onmouseout="bgOff('ann_1144_1219');" onclick="xt_clic('N','Cyberadresses');window.location='http://abonnes.lemonde.fr/web/cyberadresses/0,44-0,36-625738,0.html'">Cyberadresses</div><div id="ann_1144_1222" class="nv-ab" onmouseover="bgOn('ann_1144_1222');" onmouseout="bgOff('ann_1144_1222');" onclick="xt_clic('N','Fiches pays');window.location='http://abonnes.lemonde.fr/web/fichespays/0,43-0,36-0,0.html'">Fiches pays</div><div id="ann_1144_1220" class="nv-ab" onmouseover="bgOn('ann_1144_1220');" onmouseout="bgOff('ann_1144_1220');" onclick="xt_clic('N','Annales du bac');window.location='http://abonnes.lemonde.fr/web/education/bac_annales/0,36-0,45-0@45-0,0.html'">Annales du bac</div><div id="ann_1144_788948" class="nv-ab" onmouseover="bgOn('ann_1144_788948');" onmouseout="bgOff('ann_1144_788948');" onclick="xt_clic('N','Les resultats du bac 2007');window.location='http://abonnes.lemonde.fr/web/education/bac_resultats/0,38-0,45-0@45-0,0.html '">Les r�sultats du bac 2007</div><div id="ann_1144_920849" class="nv-ab" onmouseover="bgOn('ann_1144_920849');" onmouseout="bgOff('ann_1144_920849');" onclick="xt_clic('N','Corriges du bac');window.location='http://abonnes.lemonde.fr/web/education/bac_corriges/0,35-0,45-0@45-0,0.html'">Corrig�s du bac</div><div id="ann_1144_1221" class="nv-ab" onmouseover="bgOn('ann_1144_1221');" onmouseout="bgOff('ann_1144_1221');" onclick="xt_clic('N','Base elections');window.location='http://abonnes.lemonde.fr/web/elections/0,37-0,47-0,0.html'">Base �lections</div><div id="ann_1144_876036" class="nv-ab" onmouseover="bgOn('ann_1144_876036');" onmouseout="bgOff('ann_1144_876036');" onclick="xt_clic('N','Etudes');window.location='http://abonnes.lemonde.fr/web/eco/etudes/0,61-0@2-3234,1-0,0.html?NAV1=ETU&NAV2=NONE'">Etudes</div><div id="ann_1144_755965" class="nv-ab" onmouseover="bgOn('ann_1144_755965');" onmouseout="bgOff('ann_1144_755965');" onclick="xt_clic('N','Decouvrez');window.location='http://abonnes.lemonde.fr/web/teaser/1,22-0,1-0,0.html'"><span style="color: #990000;">D�couvrez<br/>l'�dition abonn�s</span> </div></div><div id="mc_ann_755967" class="nv-gr-2"></div></div><script language=javascript>
461
+ </table><div id="mc_ann_1136" class="nv-gr-2" onmouseover="showMenu('ann_1136');" onmouseout="hideMenu('ann_1136');"></div><div id="mc_ann_1129" class="nv-gr-2" onmouseover="showMenu('ann_1129');" onmouseout="hideMenu('ann_1129');"><div id="ann_1129_1131" class="nv-gr" onmouseover="bgOn('ann_1129_1131');" onmouseout="bgOff('ann_1129_1131');" onclick="xt_clic('N','A la Une');window.location='http://www.lemonde.fr/web/sequence/0,2-3208,1-0,0.html'">A la Une</div><div id="ann_1129_1132" class="nv-ab" onmouseover="bgOn('ann_1129_1132');" onmouseout="bgOff('ann_1129_1132');" onclick="xt_clic('N','Le Desk');window.location='http://abonnes.lemonde.fr/web/desk/0,26-3424,1-0,0.html'">Le Desk</div><div id="ann_1129_845873" class="nv-gr" onmouseover="bgOn('ann_1129_845873');" onmouseout="bgOff('ann_1129_845873');" onclick="xt_clic('N','Videos');window.location='http://www.lemonde.fr/web/les_videos/0,59-0,64-882644,0.html'">Vid�os</div><div id="ann_1129_1133" class="nv-gr" onmouseover="bgOn('ann_1129_1133');" onmouseout="bgOff('ann_1129_1133');" onclick="xt_clic('N','International');window.location='http://www.lemonde.fr/web/sequence/0,2-3210,1-0,0.html'">International</div><div id="ann_1129_1224" class="nv-gr" onmouseover="bgOn('ann_1129_1224');" onmouseout="bgOff('ann_1129_1224');" onclick="xt_clic('N','Europe');window.location='http://www.lemonde.fr/web/sequence/0,2-3214,1-0,0.html'">Europe</div><div id="ann_1129_961459" class="nv-gr" onmouseover="bgOn('ann_1129_961459');" onmouseout="bgOff('ann_1129_961459');" onclick="xt_clic('N','Politique');window.location='http://www.lemonde.fr/web/sequence/0,2-823448,1-0,0.html'">Politique</div><div id="ann_1129_1226" class="nv-gr" onmouseover="bgOn('ann_1129_1226');" onmouseout="bgOff('ann_1129_1226');" onclick="xt_clic('N','Societe');window.location='http://www.lemonde.fr/web/sequence/0,2-3224,1-0,0.html'">Soci�t�</div><div id="ann_1129_629295" class="nv-gr" onmouseover="bgOn('ann_1129_629295');" onmouseout="bgOff('ann_1129_629295');" onclick="xt_clic('N','Carnet');window.location='http://www.lemonde.fr/web/sequence/0,2-3382,1-0,0.html'">Carnet</div><div id="ann_1129_1228" class="nv-gr" onmouseover="bgOn('ann_1129_1228');" onmouseout="bgOff('ann_1129_1228');" onclick="xt_clic('N','Economie');window.location='http://www.lemonde.fr/web/sequence/0,2-3234,1-0,0.html'">Economie</div><div id="ann_1129_1229" class="nv-gr" onmouseover="bgOn('ann_1129_1229');" onmouseout="bgOff('ann_1129_1229');" onclick="xt_clic('N','Medias');window.location='http://www.lemonde.fr/web/sequence/0,2-3236,1-0,0.html'">M�dias</div><div id="ann_1129_1235" class="nv-gr" onmouseover="bgOn('ann_1129_1235');" onmouseout="bgOff('ann_1129_1235');" onclick="xt_clic('N','Meteo');window.location='http://www.lemonde.fr/web/meteo/0,31-0,42-0,0.html'">M�t�o</div><div id="ann_1129_1230" class="nv-gr" onmouseover="bgOn('ann_1129_1230');" onmouseout="bgOff('ann_1129_1230');" onclick="xt_clic('N','Rendez-vous');window.location='http://www.lemonde.fr/web/sequence/0,2-3238,1-0,0.html'">Rendez-vous</div><div id="ann_1129_1231" class="nv-gr" onmouseover="bgOn('ann_1129_1231');" onmouseout="bgOff('ann_1129_1231');" onclick="xt_clic('N','Sports');window.location='http://www.lemonde.fr/web/sequence/0,2-3242,1-0,0.html'">Sports</div><div id="ann_1129_1233" class="nv-gr" onmouseover="bgOn('ann_1129_1233');" onmouseout="bgOff('ann_1129_1233');" onclick="xt_clic('N','Environnement, Sciences');window.location='http://www.lemonde.fr/web/sequence/0,2-3244,1-0,0.html'">Environnement, Sciences</div><div id="ann_1129_743034" class="nv-gr" onmouseover="bgOn('ann_1129_743034');" onmouseout="bgOff('ann_1129_743034');" onclick="xt_clic('N','Technologies');window.location='http://www.lemonde.fr/web/sequence/0,2-651865,1-0,0.html'">Technologies</div><div id="ann_1129_1232" class="nv-gr" onmouseover="bgOn('ann_1129_1232');" onmouseout="bgOff('ann_1129_1232');" onclick="xt_clic('N','Culture');window.location='http://www.lemonde.fr/web/sequence/0,2-3246,1-0,0.html'">Culture</div><div id="ann_1129_944555" class="nv-gr" onmouseover="bgOn('ann_1129_944555');" onmouseout="bgOff('ann_1129_944555');" onclick="xt_clic('N','RSS');window.location='http://www.lemonde.fr/web/rss/0,48-0,1-0,0.html'">RSS</div></div><div id="mc_ann_1130" class="nv-gr-2" onmouseover="showMenu('ann_1130');" onmouseout="hideMenu('ann_1130');"><div id="ann_1130_1134" class="nv-gr" onmouseover="bgOn('ann_1130_1134');" onmouseout="bgOff('ann_1130_1134');" onclick="xt_clic('N','Opinions');window.location='http://www.lemonde.fr/web/sequence/0,2-3232,1-0,0.html'">Opinions</div><div id="ann_1130_1236" class="nv-gr" onmouseover="bgOn('ann_1130_1236');" onmouseout="bgOff('ann_1130_1236');" onclick="xt_clic('N','Blogs');window.location='http://www.lemonde.fr/web/blogs/0,39-0,48-0,0.html'">Blogs</div><div id="ann_1130_1135" class="nv-gr" onmouseover="bgOn('ann_1130_1135');" onmouseout="bgOff('ann_1130_1135');" onclick="xt_clic('S','Forums');window.open('http://forums.lemonde.fr')">Forums</div><div id="ann_1130_1201" class="nv-gr" onmouseover="bgOn('ann_1130_1201');" onmouseout="bgOff('ann_1130_1201');" onclick="xt_clic('N','Chats');window.location='http://www.lemonde.fr/web/chats/0,46-0,55-0,0.html'">Chats</div><div id="ann_1130_1237" class="nv-gr" onmouseover="bgOn('ann_1130_1237');" onmouseout="bgOff('ann_1130_1237');" onclick="xt_clic('N','Sondages');window.location='http://www.lemonde.fr/web/votreavis/0,25-0@2-3208,1-0,0.html'">Sondages</div></div><div id="mc_ann_1138" class="nv-gr-2" onmouseover="showMenu('ann_1138');" onmouseout="hideMenu('ann_1138');"><div id="ann_1138_1242" class="nv-gr" onmouseover="bgOn('ann_1138_1242');" onmouseout="bgOff('ann_1138_1242');" onclick="xt_clic('N','Meteo');window.location='http://www.lemonde.fr/web/meteo/0,31-0,42-0,0.html'">M�t�o</div><div id="ann_1138_1239" class="nv-gr" onmouseover="bgOn('ann_1138_1239');" onmouseout="bgOff('ann_1138_1239');" onclick="xt_clic('N','Cinema');window.location='http://www.lemonde.fr/web/sequence/0,2-3476,1-0,0.html'">Cin�ma</div><div id="ann_1138_1240" class="nv-gr" onmouseover="bgOn('ann_1138_1240');" onmouseout="bgOff('ann_1138_1240');" onclick="xt_clic('N','Livres');window.location='http://www.lemonde.fr/web/sequence/0,2-3260,1-0,0.html'">Livres</div><div id="ann_1138_1243" class="nv-gr" onmouseover="bgOn('ann_1138_1243');" onmouseout="bgOff('ann_1138_1243');" onclick="xt_clic('N','Voyages');window.location='http://www.lemonde.fr/web/sequence/0,2-3546,1-0,0.html'">Voyages</div><div id="ann_1138_700364" class="nv-gr" onmouseover="bgOn('ann_1138_700364');" onmouseout="bgOff('ann_1138_700364');" onclick="xt_clic('N','Technologies');window.location='http://www.lemonde.fr/web/sequence/0,2-651865,1-0,0.html'">Technologies</div><div id="ann_1138_737426" class="nv-gr" onmouseover="bgOn('ann_1138_737426');" onmouseout="bgOff('ann_1138_737426');" onclick="xt_clic('N','Trafic IDF');window.location='http://www.lemonde.fr/web/traficidf/0,53-0,1-0,0.html'">Trafic IDF</div><div id="ann_1138_625729" class="nv-gr" onmouseover="bgOn('ann_1138_625729');" onmouseout="bgOff('ann_1138_625729');" onclick="xt_clic('N','Examens 2007');window.location='http://www.lemonde.fr/web/sequence/0,2-3404,1-0,0.html'">Examens 2007</div><div id="ann_1138_1244" class="nv-gr" onmouseover="bgOn('ann_1138_1244');" onmouseout="bgOff('ann_1138_1244');" onclick="xt_clic('N','Savoirs');window.location='http://www.lemonde.fr/web/sequence/0,2-3328,1-0,0.html'">Savoirs</div><div id="ann_1138_1246" class="nv-gr" onmouseover="bgOn('ann_1138_1246');" onmouseout="bgOff('ann_1138_1246');" onclick="xt_clic('N','Jeux');window.location='http://www.lemonde.fr/web/sequence/0,2-3280,1-0,0.html'">Jeux</div><div id="ann_1138_761079" class="nv-gr" onmouseover="bgOn('ann_1138_761079');" onmouseout="bgOff('ann_1138_761079');" onclick="xt_clic('S','Shopping');window.open('http://shop.lemonde.fr')">Shopping</div><div id="ann_1138_928320" class="nv-gr" onmouseover="bgOn('ann_1138_928320');" onmouseout="bgOff('ann_1138_928320');" onclick="xt_clic('S','Le Monde');window.open('http://eu.link.decdna.net/n/14763/31113/www.lemonde.fr/1mpqoym;11;4;;690;;689z4l;;;;;1;/i/c?0&pq=%2fabojournal%2f%3fxtor%3dAL%2d32280084')">Abonnement journal <i>Le Monde</i></div><div id="ann_1138_956735" class="nv-gr" onmouseover="bgOn('ann_1138_956735');" onmouseout="bgOff('ann_1138_956735');" onclick="xt_clic('S','Monde');window.open('http://boutique.lemonde.fr/boutique/')">Boutique du <i>Monde</i></div><div id="ann_1138_625730" class="nv-gr" onmouseover="bgOn('ann_1138_625730');" onmouseout="bgOff('ann_1138_625730');" onclick="xt_clic('N','Aide');window.location='http://www.lemonde.fr/web/articleinteractif/0,41-0@2-3388,49-625731,0.html'">Aide</div></div><div id="mc_ann_1139" class="nv-gr-2" onmouseover="showMenu('ann_1139');" onmouseout="hideMenu('ann_1139');"><div id="ann_1139_1247" class="nv-gr" onmouseover="bgOn('ann_1139_1247');" onmouseout="bgOff('ann_1139_1247');" onclick="xt_clic('S','Emploi');window.open('http://www.talents.fr/web/sequence/0,2-3504,1-0,0.html')">Emploi</div><div id="ann_1139_676409" class="nv-gr" onmouseover="bgOn('ann_1139_676409');" onmouseout="bgOff('ann_1139_676409');" onclick="xt_clic('S','Formation');window.open('http://formation.talents.fr')">Formation</div><div id="ann_1139_726179" class="nv-gr" onmouseover="bgOn('ann_1139_726179');" onmouseout="bgOff('ann_1139_726179');" onclick="xt_clic('S','Rencontres');window.open('http://rencontres.lemonde.fr/?source=nav')">Rencontres</div><div id="ann_1139_1248" class="nv-gr" onmouseover="bgOn('ann_1139_1248');" onmouseout="bgOff('ann_1139_1248');" onclick="xt_clic('S','Immobilier');window.open('http://lemonde.immostreet.com')">Immobilier</div><div id="ann_1139_930635" class="nv-gr" onmouseover="bgOn('ann_1139_930635');" onmouseout="bgOff('ann_1139_930635');" onclick="xt_clic('S','Faire-part');window.open('http://fairepart.lemonde.fr/faire-part/accueil.html')">Faire-part</div><div id="ann_1139_631389" class="nv-gr" onmouseover="bgOn('ann_1139_631389');" onmouseout="bgOff('ann_1139_631389');" onclick="xt_clic('S','Nautisme');window.open('http://nautisme.lemonde.fr/')">Nautisme</div></div><div id="mc_ann_1140" class="nv-ab-2" onmouseover="showMenu('ann_1140');" onmouseout="hideMenu('ann_1140');"><div id="ann_1140_1202" class="nv-ab" onmouseover="bgOn('ann_1140_1202');" onmouseout="bgOff('ann_1140_1202');" onclick="xt_clic('N','Le Desk');window.location='http://abonnes.lemonde.fr/web/desk/0,26-3424,1-0,0.html'">Le Desk</div><div id="ann_1140_1207" class="nv-ab" onmouseover="bgOn('ann_1140_1207');" onmouseout="bgOff('ann_1140_1207');" onclick="xt_clic('N','Les images');window.location='http://abonnes.lemonde.fr/web/actuimgs/0,14-0,1-0,0.html'">Les images</div><div id="ann_1140_1208" class="nv-ab" onmouseover="bgOn('ann_1140_1208');" onmouseout="bgOff('ann_1140_1208');" onclick="xt_clic('N','Les depeches');window.location='http://abonnes.lemonde.fr/web/depeches/0,14-0,7-0,0.html'">Les d�p�ches</div><div id="ann_1140_1253" class="nv-ab" onmouseover="bgOn('ann_1140_1253');" onmouseout="bgOff('ann_1140_1253');" onclick="xt_clic('N','Les videos');window.location='http://abonnes.lemonde.fr/web/videos/0,26-0,59-0,0.html'">Les vid�os</div><div id="ann_1140_1209" class="nv-ab" onmouseover="bgOn('ann_1140_1209');" onmouseout="bgOff('ann_1140_1209');" onclick="xt_clic('N','Monde');window.location='http://abonnes.lemonde.fr/web/tstitres/0,26-0,45-0,0.html'">Le <i>Monde</i> en html</div><div id="ann_1140_1210" class="nv-ab" onmouseover="bgOn('ann_1140_1210');" onmouseout="bgOff('ann_1140_1210');" onclick="xt_clic('N','La Une en 8 clics');window.location='http://abonnes.lemonde.fr/web/une8/0,26-0,1-0,0.html'">La Une en 8 clics</div><div id="ann_1140_755961" class="nv-ab" onmouseover="bgOn('ann_1140_755961');" onmouseout="bgOff('ann_1140_755961');" onclick="xt_clic('N','Decouvrez');window.location='http://abonnes.lemonde.fr/web/teaser/1,22-0,1-0,0.html'"><span style="color: #990000;">D�couvrez<br/>l'�dition abonn�s</span></div></div><div id="mc_ann_1141" class="nv-ab-2" onmouseover="showMenu('ann_1141');" onmouseout="hideMenu('ann_1141');"><div id="ann_1141_1203" class="nv-ab" onmouseover="bgOn('ann_1141_1203');" onmouseout="bgOff('ann_1141_1203');" onclick="xt_clic('N','Monde');window.location='http://abonnes.lemonde.fr/web/tstitres/0,26-0,45-0,0.html'">Le <i>Monde</i> en html</div><div id="ann_1141_688060" class="nv-ab" onmouseover="bgOn('ann_1141_688060');" onmouseout="bgOff('ann_1141_688060');" onclick="xt_clic('N','ELPAISplus');window.location='http://abonnes.lemonde.fr/web/kiosque_elpais/0,50-0,1-0,0.html'">ELPAISplus</div><div id="ann_1141_755962" class="nv-ab" onmouseover="bgOn('ann_1141_755962');" onmouseout="bgOff('ann_1141_755962');" onclick="xt_clic('N','Decouvrez');window.location='http://abonnes.lemonde.fr/web/teaser/1,22-0,1-0,0.html'"><span style="color: #990000;">D�couvrez<br/>l'�dition abonn�s</span></div></div><div id="mc_ann_1142" class="nv-ab-2" onmouseover="showMenu('ann_1142');" onmouseout="hideMenu('ann_1142');"><div id="ann_1142_1223" class="nv-ab" onmouseover="bgOn('ann_1142_1223');" onmouseout="bgOff('ann_1142_1223');" onclick="xt_clic('N','Check-list');window.location='http://abonnes.lemonde.fr/web/newsletter/0,30-0,62-0@60-7@45-2,0.html'">Check-list</div><div id="ann_1142_1250" class="nv-ab" onmouseover="bgOn('ann_1142_1250');" onmouseout="bgOff('ann_1142_1250');" onclick="xt_clic('N','Que dit Le Monde&nbsp;?');window.location='http://abonnes.lemonde.fr/web/newsletter/0,30-0,62-0@60-20@45-2,0.html'">Que dit Le Monde&nbsp;?</div><div id="ann_1142_1251" class="nv-ab" onmouseover="bgOn('ann_1142_1251');" onmouseout="bgOff('ann_1142_1251');" onclick="xt_clic('N','La 12:15');window.location='http://abonnes.lemonde.fr/web/newsletter/0,30-0,62-0@60-22@45-2,0.html'">La 12:15</div><div id="ann_1142_1252" class="nv-ab" onmouseover="bgOn('ann_1142_1252');" onmouseout="bgOff('ann_1142_1252');" onclick="xt_clic('N','Les titres du jour');window.location='http://abonnes.lemonde.fr/web/newsletter/0,30-0,62-0@60-5@45-2,0.html'">Les titres du jour</div><div id="ann_1142_845966" class="nv-ab" onmouseover="bgOn('ann_1142_845966');" onmouseout="bgOff('ann_1142_845966');" onclick="xt_clic('N','Examens 2007');window.location='http://abonnes.lemonde.fr/web/newsletter/0,30-0,62-0@60-6@45-2,0.html'">Examens 2007</div><div id="ann_1142_755963" class="nv-ab" onmouseover="bgOn('ann_1142_755963');" onmouseout="bgOff('ann_1142_755963');" onclick="xt_clic('N','Decouvrez');window.location='http://abonnes.lemonde.fr/web/teaser/1,22-0,1-0,0.html'"><span style="color: #990000;">D�couvrez<br/>l'�dition abonn�s</span></div></div><div id="mc_ann_1143" class="nv-ab-2" onmouseover="showMenu('ann_1143');" onmouseout="hideMenu('ann_1143');"><div id="ann_1143_1211" class="nv-ab" onmouseover="bgOn('ann_1143_1211');" onmouseout="bgOff('ann_1143_1211');" onclick="xt_clic('N','Multimedia');window.location='http://abonnes.lemonde.fr/web/multimedia/0,45-0,1-0,0.html'">Multim�dia</div><div id="ann_1143_1212" class="nv-ab" onmouseover="bgOn('ann_1143_1212');" onmouseout="bgOff('ann_1143_1212');" onclick="xt_clic('N','Dessins');window.location='http://abonnes.lemonde.fr/web/galerie/0,29-0,31-0,0.html'">Dessins</div><div id="ann_1143_1213" class="nv-ab" onmouseover="bgOn('ann_1143_1213');" onmouseout="bgOff('ann_1143_1213');" onclick="xt_clic('N','Images du jour');window.location='http://abonnes.lemonde.fr/web/imgsdactu/0,29-0,31-0,0.html'">Images du jour</div><div id="ann_1143_934459" class="nv-ab" onmouseover="bgOn('ann_1143_934459');" onmouseout="bgOff('ann_1143_934459');" onclick="xt_clic('N','Galerie SIPA');window.location='http://abonnes.lemonde.fr/web/sipa/0,29-0,31-0,0.html'">Galerie SIPA</div><div id="ann_1143_1245" class="nv-ab" onmouseover="bgOn('ann_1143_1245');" onmouseout="bgOff('ann_1143_1245');" onclick="xt_clic('N','Bande-son');window.location='http://abonnes.lemonde.fr/web/bande_son/0,34-0,1-0,0.html'">Bande-son</div><div id="ann_1143_755964" class="nv-ab" onmouseover="bgOn('ann_1143_755964');" onmouseout="bgOff('ann_1143_755964');" onclick="xt_clic('N','Decouvrez');window.location='http://abonnes.lemonde.fr/web/teaser/1,22-0,1-0,0.html'"><span style="color: #990000;">D�couvrez<br/>l'�dition abonn�s</span></div></div><div id="mc_ann_1144" class="nv-ab-2" onmouseover="showMenu('ann_1144');" onmouseout="hideMenu('ann_1144');"><div id="ann_1144_1216" class="nv-ab" onmouseover="bgOn('ann_1144_1216');" onmouseout="bgOff('ann_1144_1216');" onclick="xt_clic('N','Dossiers');window.location='http://abonnes.lemonde.fr/web/tld/0,3-0,14-0,0.html'">Dossiers</div><div id="ann_1144_1217" class="nv-ab" onmouseover="bgOn('ann_1144_1217');" onmouseout="bgOff('ann_1144_1217');" onclick="xt_clic('N','Thematiques');window.location='http://abonnes.lemonde.fr/web/tdm/0,42-0,53-0,0.html'">Th�matiques</div><div id="ann_1144_1218" class="nv-ab" onmouseover="bgOn('ann_1144_1218');" onmouseout="bgOff('ann_1144_1218');" onclick="xt_clic('N','Reperes');window.location='http://abonnes.lemonde.fr/web/tlr/0,11-0,32-0,0.html'">Rep�res</div><div id="ann_1144_1219" class="nv-ab" onmouseover="bgOn('ann_1144_1219');" onmouseout="bgOff('ann_1144_1219');" onclick="xt_clic('N','Cyberadresses');window.location='http://abonnes.lemonde.fr/web/cyberadresses/0,44-0,36-625738,0.html'">Cyberadresses</div><div id="ann_1144_1222" class="nv-ab" onmouseover="bgOn('ann_1144_1222');" onmouseout="bgOff('ann_1144_1222');" onclick="xt_clic('N','Fiches pays');window.location='http://abonnes.lemonde.fr/web/fichespays/0,43-0,36-0,0.html'">Fiches pays</div><div id="ann_1144_1220" class="nv-ab" onmouseover="bgOn('ann_1144_1220');" onmouseout="bgOff('ann_1144_1220');" onclick="xt_clic('N','Annales du bac');window.location='http://abonnes.lemonde.fr/web/education/bac_annales/0,36-0,45-0@45-0,0.html'">Annales du bac</div><div id="ann_1144_788948" class="nv-ab" onmouseover="bgOn('ann_1144_788948');" onmouseout="bgOff('ann_1144_788948');" onclick="xt_clic('N','Les resultats du bac 2007');window.location='http://abonnes.lemonde.fr/web/education/bac_resultats/0,38-0,45-0@45-0,0.html '">Les r�sultats du bac 2007</div><div id="ann_1144_920849" class="nv-ab" onmouseover="bgOn('ann_1144_920849');" onmouseout="bgOff('ann_1144_920849');" onclick="xt_clic('N','Corriges du bac');window.location='http://abonnes.lemonde.fr/web/education/bac_corriges/0,35-0,45-0@45-0,0.html'">Corrig�s du bac</div><div id="ann_1144_1221" class="nv-ab" onmouseover="bgOn('ann_1144_1221');" onmouseout="bgOff('ann_1144_1221');" onclick="xt_clic('N','Base elections');window.location='http://abonnes.lemonde.fr/web/elections/0,37-0,47-0,0.html'">Base �lections</div><div id="ann_1144_876036" class="nv-ab" onmouseover="bgOn('ann_1144_876036');" onmouseout="bgOff('ann_1144_876036');" onclick="xt_clic('N','Etudes');window.location='http://abonnes.lemonde.fr/web/eco/etudes/0,61-0@2-3234,1-0,0.html?NAV1=ETU&NAV2=NONE'">Etudes</div><div id="ann_1144_755965" class="nv-ab" onmouseover="bgOn('ann_1144_755965');" onmouseout="bgOff('ann_1144_755965');" onclick="xt_clic('N','Decouvrez');window.location='http://abonnes.lemonde.fr/web/teaser/1,22-0,1-0,0.html'"><span style="color: #990000;">D�couvrez<br/>l'�dition abonn�s</span> </div></div><div id="mc_ann_755967" class="nv-gr-2"></div></div><script language=javascript>
462
462
  num = parseInt(Math.random()*2);
463
463
  xnum = num+1;
464
464
  div = 'm_abogold'+xnum;
@@ -478,7 +478,7 @@ var daym=mydate.getDate();
478
478
  if (daym<10)
479
479
  daym="0"+daym
480
480
  var dayarray=new Array("Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi");
481
- var montharray=new Array("janvier","f�vrier","mars","avril","mai","juin","juillet","ao�t","septembre","octobre","novembre","d�cembre");
481
+ var montharray=new Array("janvier","f�vrier","mars","avril","mai","juin","juillet","ao�t","septembre","octobre","novembre","d�cembre");
482
482
  document.write(""+dayarray[day]+" "+daym+" "+montharray[month]+" "+year+"");
483
483
 
484
484
  //-->
@@ -490,11 +490,11 @@ document.write(""+dayarray[day]+" "+daym+" "+montharray[month]+" "+year+"");
490
490
  <!-- /info_sq_1_zone -->
491
491
  <!-- fin insertion page partagee http://www.lemonde.fr/web/page_partagee/0,15-8,1-0,0.html --><!-- /gab-ssq-insert_page_partagee.php --><!-- gab-ssq-1_col_empil_fixe_sans_espace.php -->
492
492
  <table width=1000 cellpadding=0 cellspacing=0 bgcolor=e7e7e7><tr><td align=center><script language=JavaScript>OAS_AD('Top1');</script></td></tr></table>
493
-
493
+
494
494
  <!-- gab-pv-bandeau_haut_alerte.php -->
495
495
  <!-- debut bulletin alerte: /web/bulletin_alerte/0,0-0,1-0,0.html --><!-- Rosae:: mardi 13 novembre 2007 13:18:42.18760 0.037 terre -->
496
496
 
497
-
497
+
498
498
  <!-- fin bulletin alerte -->
499
499
  <!-- /gab-pv-bandeau_haut_alerte.php -->
500
500
  <!-- /gab-ssq-1_col_empil_fixe_sans_espace.php -->
@@ -505,7 +505,7 @@ document.write(""+dayarray[day]+" "+daym+" "+montharray[month]+" "+year+"");
505
505
  <div class=pg-gch>
506
506
  <!-- gab-ssq-1_col_empil_fixe_sans_espace.php -->
507
507
 
508
- <!-- gab-pv-sequence_une_normale_zone_a_titre1.php -->
508
+ <!-- gab-pv-sequence_une_normale_zone_a_titre1.php -->
509
509
 
510
510
  <table width="450" cellpadding="0" cellspacing="0" border="0">
511
511
  <tr valign="top">
@@ -513,33 +513,33 @@ document.write(""+dayarray[day]+" "+daym+" "+montharray[month]+" "+year+"");
513
513
  </tr>
514
514
  <tr valign="top">
515
515
  <td class="desc">
516
- <div id="description_977705">Que feront les syndicats si leur gr�ve est un succ�s mais que le gouvernement ne change rien � sa r�forme des r�gimes sp�ciaux ?</div><div class="type">Pratique <a href="/web/article/0,1-0@2-823448,36-977710@51-973287,0.html" name="lien" itemid="977710" >Les lignes de TGV et le m�tro parisien seront tr�s perturb�s</a></div><div class="type">Compte rendu <a href="/web/article/0,1-0@2-3224,36-977568@51-973287,0.html" name="lien" itemid="977568" >R�gimes sp�ciaux : M. Thibault re�u par M. Bertrand, Mme Idrac pr�ne la n�gociation</a></div> <a href="/web/article/0,1-0@2-3232,36-977677@51-973287,0.html" class="type" name="lien" itemid="977677" >Analyse</a> | <a href="/web/article/0,1-0@2-3224,36-977560@51-973287,0.html" class="type" name="lien" itemid="977560" >Revue de presse</a> | <a href="/web/article/0,1-0@2-3224,36-977573@51-973287,0.html" class="type" name="lien" itemid="977573" >Les faits</a><br>
516
+ <div id="description_977705">Que feront les syndicats si leur gr�ve est un succ�s mais que le gouvernement ne change rien � sa r�forme des r�gimes sp�ciaux ?</div><div class="type">Pratique <a href="/web/article/0,1-0@2-823448,36-977710@51-973287,0.html" name="lien" itemid="977710" >Les lignes de TGV et le m�tro parisien seront tr�s perturb�s</a></div><div class="type">Compte rendu <a href="/web/article/0,1-0@2-3224,36-977568@51-973287,0.html" name="lien" itemid="977568" >R�gimes sp�ciaux : M. Thibault re�u par M. Bertrand, Mme Idrac pr�ne la n�gociation</a></div> <a href="/web/article/0,1-0@2-3232,36-977677@51-973287,0.html" class="type" name="lien" itemid="977677" >Analyse</a> | <a href="/web/article/0,1-0@2-3224,36-977560@51-973287,0.html" class="type" name="lien" itemid="977560" >Revue de presse</a> | <a href="/web/article/0,1-0@2-3224,36-977573@51-973287,0.html" class="type" name="lien" itemid="977573" >Les faits</a><br>
517
517
  </td>
518
518
  <td align=right>
519
- <a href="/web/article/0,1-0@2-823448,36-977705@51-973287,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_2_ill_977914_cgt.jpg width=228 height=152 border=0 alt='Le secr�taire g�n�ral de la f�d�ration des cheminots CGT Didier Le Reste, le 31 octobre 2007 au si�ge de la CGT � Montreuil. | AFP/BERTRAND GUAY' title='Le secr�taire g�n�ral de la f�d�ration des cheminots CGT Didier Le Reste, le 31 octobre 2007 au si�ge de la CGT � Montreuil. | AFP/BERTRAND GUAY' align=left vspace=4 hspace=4></a>
519
+ <a href="/web/article/0,1-0@2-823448,36-977705@51-973287,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_2_ill_977914_cgt.jpg width=228 height=152 border=0 alt='Le secr�taire g�n�ral de la f�d�ration des cheminots CGT Didier Le Reste, le 31 octobre 2007 au si�ge de la CGT � Montreuil. | AFP/BERTRAND GUAY' title='Le secr�taire g�n�ral de la f�d�ration des cheminots CGT Didier Le Reste, le 31 octobre 2007 au si�ge de la CGT � Montreuil. | AFP/BERTRAND GUAY' align=left vspace=4 hspace=4></a>
520
520
  </td>
521
521
  </tr>
522
522
  </table>
523
523
  <div class=ligne>&nbsp;</div>
524
524
  <!-- /gab-pv-sequence_une_normale_zone_a_titre1.php-->
525
- <!-- gab-pv-sequence_une_normale_zone_a_titre2.php -->
525
+ <!-- gab-pv-sequence_une_normale_zone_a_titre2.php -->
526
526
 
527
- <div class=tit2><a href="/web/article/0,1-0@2-3234,36-977727@51-977835,0.html" id="titre_977727" name="lien" itemid="977727">Emirates veut faire de Duba� une plaque tournante du trafic a�rien</a></div>
528
- <div id="description_977727"> "Le mod�le �conomique d'Emirates consiste � d�tourner le flux de passagers transitant par l'Europe vers son hub de Duba�", explique un consultant.</div>
529
- <div class="type">Infographie <a href="/web/infog/0,47-0@2-3234,54-977639@51-977835,0.html" name="lien" itemid="977639" >Emirates est devenu, en tr�s peu de temps, une des premi�res compagnies mondiales</a></div><div class="type">Les faits <a href="/web/article/0,1-0@2-3234,36-977065@51-977835,0.html" name="lien" itemid="977065" >Commande record de Duba� Emirates � Airbus</a></div>
527
+ <div class=tit2><a href="/web/article/0,1-0@2-3234,36-977727@51-977835,0.html" id="titre_977727" name="lien" itemid="977727">Emirates veut faire de Duba� une plaque tournante du trafic a�rien</a></div>
528
+ <div id="description_977727"> "Le mod�le �conomique d'Emirates consiste � d�tourner le flux de passagers transitant par l'Europe vers son hub de Duba�", explique un consultant.</div>
529
+ <div class="type">Infographie <a href="/web/infog/0,47-0@2-3234,54-977639@51-977835,0.html" name="lien" itemid="977639" >Emirates est devenu, en tr�s peu de temps, une des premi�res compagnies mondiales</a></div><div class="type">Les faits <a href="/web/article/0,1-0@2-3234,36-977065@51-977835,0.html" name="lien" itemid="977065" >Commande record de Duba� Emirates � Airbus</a></div>
530
530
  <div class=ligne>&nbsp;</div>
531
531
  <!-- /gab-pv-sequence_une_normale_zone_a_titre2.php-->
532
- <!-- gab-pv-sequence_une_normale_zone_a_titre2.php -->
532
+ <!-- gab-pv-sequence_une_normale_zone_a_titre2.php -->
533
533
 
534
- <div class=tit2><a href="/web/article/0,1-0@2-3218,36-977682@51-891944,0.html" id="titre_977682" name="lien" itemid="977682">R�union d'Annapolis : Ehoud Olmert confront� � une forte opposition en Isra�l</a></div>
535
- <div class="type">Les faits <a href="/web/article/0,1-0@2-3218,36-977683@51-891944,0.html" name="lien" itemid="977683" >A Gaza, le Hamas tire sur le Fatah qui c�l�brait la m�moire de Yasser Arafat</a></div><div class="type">Reportage <a href="/web/article/0,1-0@2-3218,36-976413@51-891944,0.html" name="lien" itemid="976413" >Gaza, terre fant�me des m�dias isra�liens</a></div>
534
+ <div class=tit2><a href="/web/article/0,1-0@2-3218,36-977682@51-891944,0.html" id="titre_977682" name="lien" itemid="977682">R�union d'Annapolis : Ehoud Olmert confront� � une forte opposition en Isra�l</a></div>
535
+ <div class="type">Les faits <a href="/web/article/0,1-0@2-3218,36-977683@51-891944,0.html" name="lien" itemid="977683" >A Gaza, le Hamas tire sur le Fatah qui c�l�brait la m�moire de Yasser Arafat</a></div><div class="type">Reportage <a href="/web/article/0,1-0@2-3218,36-976413@51-891944,0.html" name="lien" itemid="976413" >Gaza, terre fant�me des m�dias isra�liens</a></div>
536
536
  <div class=ligne>&nbsp;</div>
537
537
  <!-- /gab-pv-sequence_une_normale_zone_a_titre2.php--><!-- /gab-ssq-1_col_empil_fixe_sans_espace.php -->
538
538
 
539
539
  <!-- gab-ssq-1_col_empil_fixe_sans_espace.php -->
540
540
 
541
541
 
542
- <!-- gab-pv-sequence_une_zone_b.php -->
542
+ <!-- gab-pv-sequence_une_zone_b.php -->
543
543
 
544
544
  <div style='width:450px'>
545
545
  <div class=zone-b>
@@ -549,41 +549,41 @@ document.write(""+dayarray[day]+" "+daym+" "+montharray[month]+" "+year+"");
549
549
  </div>
550
550
  <!-- /gab-pv-sequence_une_zone_b.php-->
551
551
 
552
- <!-- gab-pv-sequence_une_zone_b.php -->
552
+ <!-- gab-pv-sequence_une_zone_b.php -->
553
553
 
554
554
  <div style='width:450px'>
555
555
  <div class=zone-b>
556
- <div class=tit3><a href="/web/article/0,1-0@2-3214,36-977668@51-951246,0.html" name="lien" itemid="977668"><b id="titre_977668">Nicolas Sarkozy d�fend sa politique �conomique devant le Parlement europ�en</b></a></div>
556
+ <div class=tit3><a href="/web/article/0,1-0@2-3214,36-977668@51-951246,0.html" name="lien" itemid="977668"><b id="titre_977668">Nicolas Sarkozy d�fend sa politique �conomique devant le Parlement europ�en</b></a></div>
557
557
  <br>
558
558
  </div>
559
559
  </div>
560
560
  <!-- /gab-pv-sequence_une_zone_b.php-->
561
561
 
562
- <!-- gab-pv-sequence_une_zone_b.php -->
562
+ <!-- gab-pv-sequence_une_zone_b.php -->
563
563
 
564
564
  <div style='width:450px'>
565
565
  <div class=zone-b>
566
- <div class=tit3><a href="/web/article/0,1-0@2-3212,36-977663@51-754471,0.html" name="lien" itemid="977663"><b id="titre_977663">173 000 personnes ont fui Mogadiscio au cours des deux derni�res semaines</b></a></div>
566
+ <div class=tit3><a href="/web/article/0,1-0@2-3212,36-977663@51-754471,0.html" name="lien" itemid="977663"><b id="titre_977663">173 000 personnes ont fui Mogadiscio au cours des deux derni�res semaines</b></a></div>
567
567
  <br>
568
568
  </div>
569
569
  </div>
570
570
  <!-- /gab-pv-sequence_une_zone_b.php-->
571
571
 
572
- <!-- gab-pv-sequence_une_zone_b.php -->
572
+ <!-- gab-pv-sequence_une_zone_b.php -->
573
573
 
574
574
  <div style='width:450px'>
575
575
  <div class=zone-b>
576
- <div class=tit3><a href="/web/article/0,1-0@2-3260,36-960052@51-973997,0.html" name="lien" itemid="960052"><b id="titre_960052">Le prix Interalli� attribu� � Christophe Ono-dit-Biot </b></a></div>
576
+ <div class=tit3><a href="/web/article/0,1-0@2-3260,36-960052@51-973997,0.html" name="lien" itemid="960052"><b id="titre_960052">Le prix Interalli� attribu� � Christophe Ono-dit-Biot </b></a></div>
577
577
  <a href="/web/portfolio/0,12-0@2-3246,31-977650@51-973997,0.html" class="type" name="lien" itemid="977650" >Portfolio</a> | <a href="/web/article/0,1-0@2-3260,36-977457@51-973997,0.html" class="type" name="lien" itemid="977457" >Les faits</a> | <a href="/web/blog/0,39-0,48-969558,0.html" target=_blank class="type" name="lien" itemid="969558" >Blog</a><br>
578
578
  </div>
579
579
  </div>
580
580
  <!-- /gab-pv-sequence_une_zone_b.php-->
581
581
 
582
- <!-- gab-pv-sequence_une_zone_b.php -->
582
+ <!-- gab-pv-sequence_une_zone_b.php -->
583
583
 
584
584
  <div style='width:450px'>
585
585
  <div class=zone-b>
586
- <div class=tit3><a href="/web/article/0,1-0@2-3214,36-977254@51-970782,0.html" name="lien" itemid="977254"><b id="titre_977254">Les Danois se prononcent sur l'alliance des lib�raux avec l'extr�me droite</b></a></div>
586
+ <div class=tit3><a href="/web/article/0,1-0@2-3214,36-977254@51-970782,0.html" name="lien" itemid="977254"><b id="titre_977254">Les Danois se prononcent sur l'alliance des lib�raux avec l'extr�me droite</b></a></div>
587
587
  <br>
588
588
  </div>
589
589
  </div>
@@ -592,7 +592,7 @@ document.write(""+dayarray[day]+" "+daym+" "+montharray[month]+" "+year+"");
592
592
  </div>
593
593
  <!-- gab-ssq-1_col_empil_fixe_sans_espace.php -->
594
594
 
595
- <!-- gab-pv-barre_outils_une.php -->
595
+ <!-- gab-pv-barre_outils_une.php -->
596
596
  <table width="459" cellpadding="1" cellspacing="1" border="0" class="br-out">
597
597
  <tr valign="middle">
598
598
  <td style="border-right:solid 1px #336699"><a href="javascript:ouvrir_jelec();"><img src="http://medias.lemonde.fr/mmpub/img/icn/pdf.gif" alt="" width="18" height="17" border="0" hspace="4" align="absmiddle">Journal Electronique</a></td>
@@ -608,26 +608,26 @@ document.write(""+dayarray[day]+" "+daym+" "+montharray[month]+" "+year+"");
608
608
 
609
609
  <!-- /gab-ssq-1_col_empil_fixe_sans_espace.php -->
610
610
 
611
-
611
+
612
612
  <div class=pg-gch>
613
613
  <!-- gab-ssq-1_col_empil_fixe_sans_espace.php -->
614
614
  <center><script language=JavaScript>OAS_AD('Frame2');</script></center>
615
615
  <!-- gab-pv-liste_seqs_speciales.php -->
616
616
  <!-- /gab-pv-liste_seqs_speciales.php -->
617
617
 
618
-
618
+
619
619
  <!-- gab-ssq-1_col_empil_fixe_sans_espace.php -->
620
620
 
621
621
 
622
-
623
-
624
-
625
-
626
-
627
- <!-- gab-pv-sequence_ensemble_complementaire.php -->
628
- <div class=sq-tt><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-sq.gif" alt="*" width="18" height="18" border="0" align="absmiddle"> <a href="/web/sequence/0,2-3210,1-0,0.html">INTERNATIONAL</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3214,36-977704@51-925598,0.html'>La coalition allemande rallonge la dur�e d'indemnit� pour les ch�meurs �g�s</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3234,36-976883@51-925598,0.html'>Les faits</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3214,36-977703@51-974215,0.html'>Rome demande une modification des r�gles de libre circulation dans l'Union europ�enne</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3214,36-977701@51-977361,0.html'>Paris et Berlin lancent une politique d'immigration commune</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3214,36-977256@51-977361,0.html'>Cadrage</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3214,36-977690@51-973116,0.html'>Election pr�sidentielle : l'opposition g�orgienne d�signe son candidat contre M. Saakachvili</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3214,36-976855@51-973116,0.html'>Eclairage</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3214,36-976856@51-973116,0.html'>Entretien</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3214,36-977752@51-972553,0.html'>Grigori Pasko, en dissidence surveill�e</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-609984,36-977638@51-972553,0.html'>Compte rendu</a></div><!-- /gab-pv-sequence_ensemble_complementaire.php-->
629
622
 
630
-
631
623
 
624
+
625
+
626
+
627
+
628
+ <!-- gab-pv-sequence_ensemble_complementaire.php -->
629
+ <div class=sq-tt><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-sq.gif" alt="*" width="18" height="18" border="0" align="absmiddle"> <a href="/web/sequence/0,2-3210,1-0,0.html">INTERNATIONAL</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3214,36-977704@51-925598,0.html'>La coalition allemande rallonge la dur�e d'indemnit� pour les ch�meurs �g�s</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3234,36-976883@51-925598,0.html'>Les faits</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3214,36-977703@51-974215,0.html'>Rome demande une modification des r�gles de libre circulation dans l'Union europ�enne</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3214,36-977701@51-977361,0.html'>Paris et Berlin lancent une politique d'immigration commune</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3214,36-977256@51-977361,0.html'>Cadrage</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3214,36-977690@51-973116,0.html'>Election pr�sidentielle : l'opposition g�orgienne d�signe son candidat contre M. Saakachvili</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3214,36-976855@51-973116,0.html'>Eclairage</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3214,36-976856@51-973116,0.html'>Entretien</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3214,36-977752@51-972553,0.html'>Grigori Pasko, en dissidence surveill�e</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-609984,36-977638@51-972553,0.html'>Compte rendu</a></div><!-- /gab-pv-sequence_ensemble_complementaire.php-->
630
+
631
+
632
632
  <!-- ENTETE_GABARIT
633
633
  [objets]
634
634
  nom_objet_entree = _scr_liste_articles
@@ -636,38 +636,38 @@ ENTETE_GABARIT -->
636
636
 
637
637
 
638
638
 
639
- <!-- gab-pv-appel_sequence_opinions_centre.php -->
639
+ <!-- gab-pv-appel_sequence_opinions_centre.php -->
640
640
 
641
641
  <div class="saut_ligne" style="height:16px;"></div>
642
642
  <a href="/web/sequence/0,2-3232,1-0,0.html"><img src="http://medias.lemonde.fr/mmpub/img/tit/1024_op_extra_wide.gif" alt="Opinions" border="0"></a>
643
643
  <div class=box>
644
644
  <div style="float:left;width:216px;margin-right:4px;">
645
- <div class=lien-2><span class=type-gr>Editorial du "Monde"</span> <a href="/web/article/0,1-0@2-3232,36-977676,0.html">L'universit� en otage</a></div><div class=lien-2><span class=type-gr>Analyse</span> <a href="/web/article/0,1-0@2-3232,36-977677,0.html">R�gimes sp�ciaux, gr�ves sp�ciales, par Michel Noblecourt</a></div><div class=lien-2><span class=type-gr>Ecofrictions</span> <a href="/web/article/0,1-0@2-3232,36-977789,0.html">Frais bancaires : une loi pour rien ?, par Anne Michel</a></div></div><div style="float:left;width:220px;margin-right:0px;"><div class=lien-2><span class=type-gr>Chronique "International"</span> <a href="/web/article/0,1-0@2-3232,36-977679,0.html">La mac�doine, ou l'art d'accommoder les restes, par Daniel Vernet</a></div><div class=lien-2><span class=type-gr>Vu & comment�</span> <a href="/web/article/0,1-0@2-3232,36-977787,0.html">La prostitution � Paris, grise et banale, par Dominique Dhombres</a></div><div class=lien-2><span class=type-gr>Billet</span> <a href="/web/article/0,1-0@2-3232,36-977788,0.html">Tsunami, par Robert Sol�</a></div>
645
+ <div class=lien-2><span class=type-gr>Editorial du "Monde"</span> <a href="/web/article/0,1-0@2-3232,36-977676,0.html">L'universit� en otage</a></div><div class=lien-2><span class=type-gr>Analyse</span> <a href="/web/article/0,1-0@2-3232,36-977677,0.html">R�gimes sp�ciaux, gr�ves sp�ciales, par Michel Noblecourt</a></div><div class=lien-2><span class=type-gr>Ecofrictions</span> <a href="/web/article/0,1-0@2-3232,36-977789,0.html">Frais bancaires : une loi pour rien ?, par Anne Michel</a></div></div><div style="float:left;width:220px;margin-right:0px;"><div class=lien-2><span class=type-gr>Chronique "International"</span> <a href="/web/article/0,1-0@2-3232,36-977679,0.html">La mac�doine, ou l'art d'accommoder les restes, par Daniel Vernet</a></div><div class=lien-2><span class=type-gr>Vu & comment�</span> <a href="/web/article/0,1-0@2-3232,36-977787,0.html">La prostitution � Paris, grise et banale, par Dominique Dhombres</a></div><div class=lien-2><span class=type-gr>Billet</span> <a href="/web/article/0,1-0@2-3232,36-977788,0.html">Tsunami, par Robert Sol�</a></div>
646
646
  <div class=lien-2><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-rg.gif" alt="" border="0"> <a href="/web/sequence/0,2-3232,1-0,0.html">Toutes les opinions</a></div>
647
647
  </div>
648
648
  <div class="saut_ligne"></div>
649
649
  </div>
650
- <div class="saut_ligne"></div><!-- /gab-pv-appel_sequence_opinions_centre.php--><div class=sq-tt><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-sq.gif" alt="*" width="18" height="18" border="0" align="absmiddle"> <a href="/web/sequence/0,2-823448,1-0,0.html">POLITIQUE</a></div><div class=lien-2><a href='/web/article/0,1-0@2-823448,36-977722,0.html'>Divorce entre M. Flosse et le gouvernement sur la r�forme de la Polyn�sie</a><br></div><div class=lien-2><a href='/web/article/0,1-0@2-823448,36-977710,0.html'>Les lignes de TGV et le m�tro parisien seront tr�s perturb�s</a><br></div><div class=lien-2><a href='/web/article/0,1-0@2-823448,36-977705,0.html'>Les syndicats ont peur de perdre la bataille de l'opinion</a><br></div><!-- gab-pv-sequence_ensemble_complementaire.php -->
651
- <div class=sq-tt><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-sq.gif" alt="*" width="18" height="18" border="0" align="absmiddle"> <a href="/web/sequence/0,2-3224,1-0,0.html">SOCI�T�</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3224,36-977614@51-976955,0.html'>Yvan Colonna met en cause l'enqu�te de la police</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3224,36-977721@51-976955,0.html'>Compte rendu</a> |&nbsp;<a class=type href='/web/son/0,54-0@2-3224,63-977536@51-976955,0.html'>Audio</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3224,36-977712@51-970849,0.html'>Le projet de loi de fusion ANPE-Unedic est pr�t</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3234,36-977711@51-972923,0.html'>Le taux de ch�mage s'�tablit � 8,1 % au deuxi�me trimestre</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-823448,36-977534@51-972923,0.html'>Les faits</a></div><div class=lien-2></div><!-- /gab-pv-sequence_ensemble_complementaire.php-->
650
+ <div class="saut_ligne"></div><!-- /gab-pv-appel_sequence_opinions_centre.php--><div class=sq-tt><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-sq.gif" alt="*" width="18" height="18" border="0" align="absmiddle"> <a href="/web/sequence/0,2-823448,1-0,0.html">POLITIQUE</a></div><div class=lien-2><a href='/web/article/0,1-0@2-823448,36-977722,0.html'>Divorce entre M. Flosse et le gouvernement sur la r�forme de la Polyn�sie</a><br></div><div class=lien-2><a href='/web/article/0,1-0@2-823448,36-977710,0.html'>Les lignes de TGV et le m�tro parisien seront tr�s perturb�s</a><br></div><div class=lien-2><a href='/web/article/0,1-0@2-823448,36-977705,0.html'>Les syndicats ont peur de perdre la bataille de l'opinion</a><br></div><!-- gab-pv-sequence_ensemble_complementaire.php -->
651
+ <div class=sq-tt><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-sq.gif" alt="*" width="18" height="18" border="0" align="absmiddle"> <a href="/web/sequence/0,2-3224,1-0,0.html">SOCI�T�</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3224,36-977614@51-976955,0.html'>Yvan Colonna met en cause l'enqu�te de la police</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3224,36-977721@51-976955,0.html'>Compte rendu</a> |&nbsp;<a class=type href='/web/son/0,54-0@2-3224,63-977536@51-976955,0.html'>Audio</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3224,36-977712@51-970849,0.html'>Le projet de loi de fusion ANPE-Unedic est pr�t</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3234,36-977711@51-972923,0.html'>Le taux de ch�mage s'�tablit � 8,1 % au deuxi�me trimestre</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-823448,36-977534@51-972923,0.html'>Les faits</a></div><div class=lien-2></div><!-- /gab-pv-sequence_ensemble_complementaire.php-->
652
652
 
653
-
653
+
654
654
  <div class=sq-tt><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-sq.gif" alt="*" width="18" height="18" border="0" align="absmiddle"> <a href="/web/sequence/0,2-3234,1-0,0.html">ECONOMIE</a></div><table width='450' cellpadding='0' cellspacing='0' border='0'>
655
655
  <tr valign='top'>
656
- <td width='87'><a href='/web/article/0,1-0@2-3234,36-977728@51-974931,0.html'><a href="/web/article/0,1-0@2-3234,36-977728@51-974931,0.html"><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_1_ill_861179_53026914sp001_citigroup_los.jpg width=87 height=58 border=0 alt='Le si�ge de Citigroup � New York City, le 7 juin 2005. La premi�re banque mondiale a �t� duremement touch�e par la crise des subprimes. | AFP/Spencer Platt' title='Le si�ge de Citigroup � New York City, le 7 juin 2005. La premi�re banque mondiale a �t� duremement touch�e par la crise des subprimes. | AFP/Spencer Platt' ></a></a></td>
656
+ <td width='87'><a href='/web/article/0,1-0@2-3234,36-977728@51-974931,0.html'><a href="/web/article/0,1-0@2-3234,36-977728@51-974931,0.html"><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_1_ill_861179_53026914sp001_citigroup_los.jpg width=87 height=58 border=0 alt='Le si�ge de Citigroup � New York City, le 7 juin 2005. La premi�re banque mondiale a �t� duremement touch�e par la crise des subprimes. | AFP/Spencer Platt' title='Le si�ge de Citigroup � New York City, le 7 juin 2005. La premi�re banque mondiale a �t� duremement touch�e par la crise des subprimes. | AFP/Spencer Platt' ></a></a></td>
657
657
  <td class=zoneb>
658
- <b><a href='/web/article/0,1-0@2-3234,36-977728@51-974931,0.html'>Les "subprimes" pourraient co�ter 400 milliards de dollars aux banques</a></b>
658
+ <b><a href='/web/article/0,1-0@2-3234,36-977728@51-974931,0.html'>Les "subprimes" pourraient co�ter 400 milliards de dollars aux banques</a></b>
659
659
  </td>
660
660
  </tr>
661
661
  </table>
662
- <div class=lien-2><a href='/web/article/0,1-0@2-3234,36-977729@51-946421,0.html'>Dominique Strauss-Kahn obtient l'apurement total de la dette du Liberia</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3234,36-977730@51-946421,0.html'>Zoom</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3234,36-977740@51-971495,0.html'>Porsche reste le constructeur le plus rentable du monde gr�ce � Volkswagen</a></div><div class=lien-2></div><!-- /gab-pv-sequence_ensemble_complementaire.php-->
662
+ <div class=lien-2><a href='/web/article/0,1-0@2-3234,36-977729@51-946421,0.html'>Dominique Strauss-Kahn obtient l'apurement total de la dette du Liberia</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3234,36-977730@51-946421,0.html'>Zoom</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3234,36-977740@51-971495,0.html'>Porsche reste le constructeur le plus rentable du monde gr�ce � Volkswagen</a></div><div class=lien-2></div><!-- /gab-pv-sequence_ensemble_complementaire.php-->
663
663
 
664
-
665
- <div class=sq-tt><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-sq.gif" alt="*" width="18" height="18" border="0" align="absmiddle"> <a href="/web/sequence/0,2-3236,1-0,0.html">M�DIAS</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3236,36-977744@51-977847,0.html'>La grogne des radios priv�es musicales</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3236,36-977746@51-977849,0.html'>La diffusion des principaux journaux am�ricains enregistre un recul</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3236,36-977761@51-977862,0.html'>Quotidiens r�gionaux : les nouveaux empires</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3236,36-977762@51-977862,0.html'>Eclairage</a> |&nbsp;<a class=type href='/web/infog/0,47-0@2-3234,54-977641@51-977862,0.html'>Infographie</a></div><div class=lien-2></div><!-- /gab-pv-sequence_ensemble_complementaire.php-->
664
+
665
+ <div class=sq-tt><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-sq.gif" alt="*" width="18" height="18" border="0" align="absmiddle"> <a href="/web/sequence/0,2-3236,1-0,0.html">M�DIAS</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3236,36-977744@51-977847,0.html'>La grogne des radios priv�es musicales</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3236,36-977746@51-977849,0.html'>La diffusion des principaux journaux am�ricains enregistre un recul</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3236,36-977761@51-977862,0.html'>Quotidiens r�gionaux : les nouveaux empires</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3236,36-977762@51-977862,0.html'>Eclairage</a> |&nbsp;<a class=type href='/web/infog/0,47-0@2-3234,54-977641@51-977862,0.html'>Infographie</a></div><div class=lien-2></div><!-- /gab-pv-sequence_ensemble_complementaire.php-->
666
666
 
667
-
668
- <div class=sq-tt><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-sq.gif" alt="*" width="18" height="18" border="0" align="absmiddle"> <a href="/web/sequence/0,2-3242,1-0,0.html">SPORTS</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3242,36-977747@51-977081,0.html'>Football : le Calcio suspendu pendant un week-end apr�s l'�ruption de violence de tifosi</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3242,36-977293@51-977081,0.html'>Reportage</a> |&nbsp;<a class=type href='/web/video/0,47-0@2-3214,54-977145@51-977081,0.html'>Vid�o</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3242,36-977745@51-970258,0.html'>Voile : Franck Cammas et St�ve Ravussin s'approchent de Salvador de Bahia</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3242,36-977290@51-970258,0.html'>Compte rendu</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3242,36-976886@51-970258,0.html'>Cadrage</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3242,36-977644@51-966666,0.html'>Masters de Shangha� : Gasquet s'offre Djokovic et pr�serve ses chances</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3242,36-977289@51-966666,0.html'>Compte rendu</a></div><div class=lien-2></div><!-- /gab-pv-sequence_ensemble_complementaire.php-->
667
+
668
+ <div class=sq-tt><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-sq.gif" alt="*" width="18" height="18" border="0" align="absmiddle"> <a href="/web/sequence/0,2-3242,1-0,0.html">SPORTS</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3242,36-977747@51-977081,0.html'>Football : le Calcio suspendu pendant un week-end apr�s l'�ruption de violence de tifosi</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3242,36-977293@51-977081,0.html'>Reportage</a> |&nbsp;<a class=type href='/web/video/0,47-0@2-3214,54-977145@51-977081,0.html'>Vid�o</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3242,36-977745@51-970258,0.html'>Voile : Franck Cammas et St�ve Ravussin s'approchent de Salvador de Bahia</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3242,36-977290@51-970258,0.html'>Compte rendu</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3242,36-976886@51-970258,0.html'>Cadrage</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3242,36-977644@51-966666,0.html'>Masters de Shangha� : Gasquet s'offre Djokovic et pr�serve ses chances</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3242,36-977289@51-966666,0.html'>Compte rendu</a></div><div class=lien-2></div><!-- /gab-pv-sequence_ensemble_complementaire.php-->
669
669
 
670
-
670
+
671
671
  <div class='saut_ligne' style='height:8px;'></div>
672
672
  <div class='quad_pub__main'>
673
673
  <div class='quad_pub__pub_gauche'>
@@ -691,40 +691,40 @@ ENTETE_GABARIT -->
691
691
  </div>
692
692
  <div class='saut_ligne'></div>
693
693
  </div>
694
- <!-- / gab-pv-pub_OAS_middle3-x12-x13-x14.php --> <!-- gab-pv-sequence_ensemble_complementaire.php -->
694
+ <!-- / gab-pv-pub_OAS_middle3-x12-x13-x14.php --> <!-- gab-pv-sequence_ensemble_complementaire.php -->
695
695
  <div class=sq-tt><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-sq.gif" alt="*" width="18" height="18" border="0" align="absmiddle"> <a href="/web/sequence/0,2-651865,1-0,0.html">TECHNOLOGIES</a></div><table width='450' cellpadding='0' cellspacing='0' border='0'>
696
696
  <tr valign='top'>
697
697
  <td width='87'><a href='/web/article/0,1-0@2-651865,36-977479@51-968783,0.html'><a href="/web/article/0,1-0@2-651865,36-977479@51-968783,0.html"><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/12/h_1_ill_977518_269599.jpg width=87 height=58 border=0 alt='Mark Zuckerberg, fondateur de Facebook. | AP' title='Mark Zuckerberg, fondateur de Facebook. | AP' ></a></a></td>
698
698
  <td class=zoneb>
699
- <b><a href='/web/article/0,1-0@2-651865,36-977479@51-968783,0.html'>Les membres de Facebook appellent � la r�sistance</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-651865,36-976841@51-968783,0.html'>Compte rendu</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-651865,36-976878@51-968783,0.html'>Entretien</a></b>
699
+ <b><a href='/web/article/0,1-0@2-651865,36-977479@51-968783,0.html'>Les membres de Facebook appellent � la r�sistance</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-651865,36-976841@51-968783,0.html'>Compte rendu</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-651865,36-976878@51-968783,0.html'>Entretien</a></b>
700
700
  </td>
701
701
  </tr>
702
702
  </table>
703
- <div class=lien-2><a href='/web/article/0,1-0@2-3238,36-976914@51-974274,0.html'>Un cadre �quip� pour recevoir les photos prises d'un mobile</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3234,36-977732@51-936229,0.html'>Bruxelles veut une r�gulation europ�enne des t�l�coms</a></div><div class=lien-2></div><!-- /gab-pv-sequence_ensemble_complementaire.php-->
703
+ <div class=lien-2><a href='/web/article/0,1-0@2-3238,36-976914@51-974274,0.html'>Un cadre �quip� pour recevoir les photos prises d'un mobile</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3234,36-977732@51-936229,0.html'>Bruxelles veut une r�gulation europ�enne des t�l�coms</a></div><div class=lien-2></div><!-- /gab-pv-sequence_ensemble_complementaire.php-->
704
704
 
705
-
705
+
706
706
  <div class=sq-tt><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-sq.gif" alt="*" width="18" height="18" border="0" align="absmiddle"> <a href="/web/sequence/0,2-3244,1-0,0.html">ENVIRONNEMENT, SCIENCES</a></div><table width='450' cellpadding='0' cellspacing='0' border='0'>
707
707
  <tr valign='top'>
708
- <td width='87'><a href='/web/article/0,1-0@2-3214,36-977476@51-977481,0.html'><a href="/web/article/0,1-0@2-3214,36-977476@51-977481,0.html"><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/12/h_1_ill_977477_berlin.jpg width=87 height=58 border=0 alt='La chanceli�re allemande Angela Merkel et le pr�sident fran�ais Nicolas Sarkozy, lundi 12 novembre 2007 � Berlin. | AP/Marcus Brandt' title='La chanceli�re allemande Angela Merkel et le pr�sident fran�ais Nicolas Sarkozy, lundi 12 novembre 2007 � Berlin. | AP/Marcus Brandt' ></a></a></td>
708
+ <td width='87'><a href='/web/article/0,1-0@2-3214,36-977476@51-977481,0.html'><a href="/web/article/0,1-0@2-3214,36-977476@51-977481,0.html"><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/12/h_1_ill_977477_berlin.jpg width=87 height=58 border=0 alt='La chanceli�re allemande Angela Merkel et le pr�sident fran�ais Nicolas Sarkozy, lundi 12 novembre 2007 � Berlin. | AP/Marcus Brandt' title='La chanceli�re allemande Angela Merkel et le pr�sident fran�ais Nicolas Sarkozy, lundi 12 novembre 2007 � Berlin. | AP/Marcus Brandt' ></a></a></td>
709
709
  <td class=zoneb>
710
- <b><a href='/web/article/0,1-0@2-3214,36-977476@51-977481,0.html'>La France et l'Allemagne affichent leur unit� sur le projet Galileo</a></b>
710
+ <b><a href='/web/article/0,1-0@2-3214,36-977476@51-977481,0.html'>La France et l'Allemagne affichent leur unit� sur le projet Galileo</a></b>
711
711
  </td>
712
712
  </tr>
713
713
  </table>
714
- <div class=lien-2><a href='/web/portfolio/0,12-0@2-3210,31-977667@51-976327,0.html'>D�but de mar�e noire en mer Noire </a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3214,36-977252@51-976327,0.html'>Les faits</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3244,36-977086@51-976327,0.html'>Les faits</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3216,36-977304@51-977399,0.html'>Inde : les chantiers interdits d'Alang</a></div><div class=lien-2></div><!-- /gab-pv-sequence_ensemble_complementaire.php-->
714
+ <div class=lien-2><a href='/web/portfolio/0,12-0@2-3210,31-977667@51-976327,0.html'>D�but de mar�e noire en mer Noire </a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3214,36-977252@51-976327,0.html'>Les faits</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3244,36-977086@51-976327,0.html'>Les faits</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3216,36-977304@51-977399,0.html'>Inde : les chantiers interdits d'Alang</a></div><div class=lien-2></div><!-- /gab-pv-sequence_ensemble_complementaire.php-->
715
715
 
716
-
716
+
717
717
  <div class=sq-tt><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-sq.gif" alt="*" width="18" height="18" border="0" align="absmiddle"> <a href="/web/sequence/0,2-3246,1-0,0.html">CULTURE</a></div><table width='450' cellpadding='0' cellspacing='0' border='0'>
718
718
  <tr valign='top'>
719
- <td width='87'><a href='/web/article/0,1-0@2-3246,36-977321@51-973569,0.html'><a href="/web/article/0,1-0@2-3246,36-977321@51-973569,0.html"><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/12/h_1_ill_977207_recent-experiences.jpg width=87 height=58 border=0 alt='&quot;Recent Experiences&quot;, une pi�ce de th��tre d&#039;Amir Reza Koohestani au Th��tre de la Bastille � Paris, jusqu&#039;au 18 novembre 2007. | D.R.' title='&quot;Recent Experiences&quot;, une pi�ce de th��tre d&#039;Amir Reza Koohestani au Th��tre de la Bastille � Paris, jusqu&#039;au 18 novembre 2007. | D.R.' ></a></a></td>
719
+ <td width='87'><a href='/web/article/0,1-0@2-3246,36-977321@51-973569,0.html'><a href="/web/article/0,1-0@2-3246,36-977321@51-973569,0.html"><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/12/h_1_ill_977207_recent-experiences.jpg width=87 height=58 border=0 alt='&quot;Recent Experiences&quot;, une pi�ce de th��tre d&#039;Amir Reza Koohestani au Th��tre de la Bastille � Paris, jusqu&#039;au 18 novembre 2007. | D.R.' title='&quot;Recent Experiences&quot;, une pi�ce de th��tre d&#039;Amir Reza Koohestani au Th��tre de la Bastille � Paris, jusqu&#039;au 18 novembre 2007. | D.R.' ></a></a></td>
720
720
  <td class=zoneb>
721
- <b><a href='/web/article/0,1-0@2-3246,36-977321@51-973569,0.html'>Th��tre : "Recent Experiences", le noir destin de quatre femmes solitaires</a></b>
721
+ <b><a href='/web/article/0,1-0@2-3246,36-977321@51-973569,0.html'>Th��tre : "Recent Experiences", le noir destin de quatre femmes solitaires</a></b>
722
722
  </td>
723
723
  </tr>
724
724
  </table>
725
- <div class=lien-2><a href='/web/article/0,1-0@2-3260,36-977549@51-977554,0.html'>"XIII" : un h�ros, 1 million de cibles</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3260,36-977548@51-977554,0.html'>Entretien</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3246,36-977309@51-977402,0.html'>La guerre froide revit � Moscou</a></div><div class=lien-2></div><!-- /gab-pv-sequence_ensemble_complementaire.php-->
725
+ <div class=lien-2><a href='/web/article/0,1-0@2-3260,36-977549@51-977554,0.html'>"XIII" : un h�ros, 1 million de cibles</a> |&nbsp;<a class=type href='/web/article/0,1-0@2-3260,36-977548@51-977554,0.html'>Entretien</a></div><div class=lien-2><a href='/web/article/0,1-0@2-3246,36-977309@51-977402,0.html'>La guerre froide revit � Moscou</a></div><div class=lien-2></div><!-- /gab-pv-sequence_ensemble_complementaire.php-->
726
726
 
727
-
727
+
728
728
  <div class=sq-tt><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-sq.gif" alt="*" width="18" height="18" border="0" align="absmiddle"> <a href="/web/sequence/0,2-3238,1-0,0.html">RENDEZ-VOUS</a></div><table width='450' cellpadding='0' cellspacing='0' border='0'>
729
729
  <tr valign='top'>
730
730
  <td width='87'><a href='/web/article/0,1-0@2-3238,36-977331@51-977420,0.html'><a href="/web/article/0,1-0@2-3238,36-977331@51-977420,0.html"><img src=http://medias.lemonde.fr/mmpub/edt/ill/2006/06/09/h_1_ill_758131_londres-drapeaux.jpg width=87 height=58 border=0 alt='Des drapeaux anglais dans les rues de Londres. | GAMMA/CAMERAPRESS/STEPHEN LOCK' title='Des drapeaux anglais dans les rues de Londres. | GAMMA/CAMERAPRESS/STEPHEN LOCK' ></a></a></td>
@@ -737,12 +737,12 @@ ENTETE_GABARIT -->
737
737
 
738
738
 
739
739
 
740
-
740
+
741
741
  <!-- gab-ssq-1_col_empil_fixe_sans_espace.php -->
742
- <!-- gab-pv-horizon_complementaire.php -->
742
+ <!-- gab-pv-horizon_complementaire.php -->
743
743
  <!-- /gab-pv-horizon_complementaire.php-->
744
744
 
745
-
745
+
746
746
  </div>
747
747
  </td>
748
748
  <td width="195">
@@ -754,13 +754,13 @@ ENTETE_GABARIT -->
754
754
  <!-- DH: appel du composant: /web/depeches/cmp/0,0-0,7-37,0.html -->
755
755
  <!-- Rosae:: mardi 13 novembre 2007 15:33:24.3322 0.090 encelade -->
756
756
 
757
- <div class=lien-2><a href=/web/depeches/0,14-0,39-33204002@7-37,0.html>Retraites: Fran�ois Fillon "ne transigera pas sur les principes"</a> <span class=dt>Reuters 15h20</span></div><div class=lien-2><a href=/web/depeches/0,14-0,39-33203947@7-37,0.html>Kouchner appelle � un consensus sur le pr�sident libanais</a> <span class=dt>Reuters 15h17</span></div><div class=lien-2><a href=/web/depeches/0,14-0,39-33203873@7-37,0.html>Le Hamas arr�te des dizaines de membres du Fatah � Gaza</a> <span class=dt>Reuters 15h13</span></div><div class=lien-2><a href=/web/depeches/0,14-0,39-33203725@7-37,0.html>Les Vingt-Sept en d�saccord sur les dossiers fiscaux</a> <span class=dt>Reuters 15h07</span></div><!-- DH: fin appel du composant -->
757
+ <div class=lien-2><a href=/web/depeches/0,14-0,39-33204002@7-37,0.html>Retraites: Fran�ois Fillon "ne transigera pas sur les principes"</a> <span class=dt>Reuters 15h20</span></div><div class=lien-2><a href=/web/depeches/0,14-0,39-33203947@7-37,0.html>Kouchner appelle � un consensus sur le pr�sident libanais</a> <span class=dt>Reuters 15h17</span></div><div class=lien-2><a href=/web/depeches/0,14-0,39-33203873@7-37,0.html>Le Hamas arr�te des dizaines de membres du Fatah � Gaza</a> <span class=dt>Reuters 15h13</span></div><div class=lien-2><a href=/web/depeches/0,14-0,39-33203725@7-37,0.html>Les Vingt-Sept en d�saccord sur les dossiers fiscaux</a> <span class=dt>Reuters 15h07</span></div><!-- DH: fin appel du composant -->
758
758
  <div class="lien-2">
759
- <a href="/web/depeches/0,14-0,7-37,0.html"><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-rg.gif" alt="" border="0"> Toutes les d�p�ches</a>
759
+ <a href="/web/depeches/0,14-0,7-37,0.html"><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-rg.gif" alt="" border="0"> Toutes les d�p�ches</a>
760
760
  </div>
761
- </div>
761
+ </div>
762
762
  </div>
763
-
763
+
764
764
  <!-- /gab-pv-depeches_une.php contenu_id = -->
765
765
  <script language=JavaScript>OAS_AD('Position1');</script>
766
766
  <!-- gab-pv-revolutionnaire_reactions.php -->
@@ -790,13 +790,13 @@ ENTETE_GABARIT -->
790
790
  //-->
791
791
  </script>
792
792
  <div class=pg-mil><div class=gr-tt> JOURNAL ELECTRONIQUE </div> <div class=box>
793
- <a href="javascript:ouvrir_jelec()"><center><img src="http://www.lemonde.fr/journalelectronique/vignettes/lettre/20071114/20071114QUO.jpg" border="0" width="85px" height="122px" style="margin: 3px 0px; border-color: #bbbbbb; border-width: 1px 1px 1px 1px;" alt=""><img src="http://medias.lemonde.fr/mmpub/img/tit/page_2.jpg" border="0" width="85px" height="122px" style="margin: 3px 0px; border-color: #bbbbbb; border-width: 1px 1px 1px 0px;" alt=""></center><span class=type>Nouveau !</span> L'�dition du 14 novembre 2007 est en ligne</a>
794
-
793
+ <a href="javascript:ouvrir_jelec()"><center><img src="http://www.lemonde.fr/journalelectronique/vignettes/lettre/20071114/20071114QUO.jpg" border="0" width="85px" height="122px" style="margin: 3px 0px; border-color: #bbbbbb; border-width: 1px 1px 1px 1px;" alt=""><img src="http://medias.lemonde.fr/mmpub/img/tit/page_2.jpg" border="0" width="85px" height="122px" style="margin: 3px 0px; border-color: #bbbbbb; border-width: 1px 1px 1px 0px;" alt=""></center><span class=type>Nouveau !</span> L'�dition du 14 novembre 2007 est en ligne</a>
794
+
795
795
  </div>
796
796
  <div class=box>
797
797
  <img src="http://medias.lemonde.fr/mmpub/img/icn/fl-rg.gif" alt=""><a href="/web/inscription_newsletter/1,27-0,1-0,0.html" onclick="xt_clic('N','Recevoir newsletter JE Home')">Recevez la newsletter</a>
798
798
  </div>
799
-
799
+
800
800
  </div>
801
801
  <!-- /gab-pv-jelec_appel.php -->
802
802
  <!-- /gab-ssq-1_col_empil_fixe_sans_espace.php -->
@@ -807,44 +807,44 @@ ENTETE_GABARIT -->
807
807
  <div class=pg-mil>
808
808
  <div class=gr-tt>BLOGS</div>
809
809
  <div class=box>
810
-
810
+
811
811
  <div class=lien-2><a href="http://chine.blog.lemonde.fr/" target=_new>Arty People, Party People (2/2)</a>
812
812
  <span class=bl-auteur> par&nbsp;Ji Le</span> <span class=leg>Un oeil sur la Chine</span>
813
813
  </div>
814
- <div class=lien-2><a href="http://casadei.blog.lemonde.fr/" target=_new>"Ecrire le Liban � jamais"</a>
815
- <span class=bl-auteur> par&nbsp;Marie Depecker</span> <span class=leg>Regarder, vivre, �crire le Liban!</span>
814
+ <div class=lien-2><a href="http://casadei.blog.lemonde.fr/" target=_new>"Ecrire le Liban � jamais"</a>
815
+ <span class=bl-auteur> par&nbsp;Marie Depecker</span> <span class=leg>Regarder, vivre, �crire le Liban!</span>
816
816
  </div>
817
817
  <div class=lien-2><a href="http://correcteurs.blog.lemonde.fr/" target=_new>Entre Marseille et Toulon</a>
818
818
  <span class=bl-auteur> par&nbsp;Olivier Houdart et Martine Rousseau </span> <span class=leg>Langue sauce piquante</span>
819
819
  </div>
820
- <div class=lien-2><a href="http://lesyeuxouverts.blog.lemonde.fr/" target=_new>Sophie apr�s l'Himalaya</a>
821
- <span class=bl-auteur> par&nbsp;Ludovic Maillard</span> <span class=leg>"Fran�aises, Fran�ais..."</span>
820
+ <div class=lien-2><a href="http://lesyeuxouverts.blog.lemonde.fr/" target=_new>Sophie apr�s l'Himalaya</a>
821
+ <span class=bl-auteur> par&nbsp;Ludovic Maillard</span> <span class=leg>"Fran�aises, Fran�ais..."</span>
822
822
  </div>
823
823
  <div class=lien-2><a href="http://nicerugby.blog.lemonde.fr/" target=_new>L'ASM Clermont Auvergne sur les chapeaux de roues</a>
824
824
  <span class=bl-auteur> par&nbsp;Paul-Henri Safayan et Julien Schramm</span> <span class=leg>Nice rugby</span>
825
825
  </div>
826
826
  <div class=lien-2><a href="http://pisani.blog.lemonde.fr/" target=_new>1 laptop x enfant x 2</a>
827
- <span class=bl-auteur> par&nbsp;Francis Pisani</span> <span class=leg>Transnets, des gadgets aux r�seaux</span>
827
+ <span class=bl-auteur> par&nbsp;Francis Pisani</span> <span class=leg>Transnets, des gadgets aux r�seaux</span>
828
828
  </div>
829
-
829
+
830
830
  <div class="lien-2">Autres blogs<br />
831
831
 
832
832
 
833
-
834
- <a href="http://passouline.blog.lemonde.fr/" target=_new><img alt="La r�publique des livres" title="La r�publique des livres" border=0 width=57 src="http://medias.lemonde.fr/mmpub/edt/ill/2005/03/17/h_1_ill_626766_pierre_assouline.jpg"></img></a>
835
-
836
-
833
+
834
+ <a href="http://passouline.blog.lemonde.fr/" target=_new><img alt="La r�publique des livres" title="La r�publique des livres" border=0 width=57 src="http://medias.lemonde.fr/mmpub/edt/ill/2005/03/17/h_1_ill_626766_pierre_assouline.jpg"></img></a>
835
+
836
+
837
837
  <a href="http://lunettesrouges.blog.lemonde.fr/" target=_new><img alt="Amateur d'art" title="Amateur d'art" border=0 width=57 src="http://medias.lemonde.fr/mmpub/edt/ill/2005/09/16/h_1_ill_664287_lunettes-rouges.jpg"></img></a>
838
-
839
-
838
+
839
+
840
840
  <a href="http://clesnes.blog.lemonde.fr/" target=_new><img alt="Big Picture" title="Big Picture" border=0 width=57 src="http://medias.lemonde.fr/mmpub/edt/ill/2005/03/17/h_1_ill_626779_corine_lesnes03.jpg"></img></a>
841
-
841
+
842
842
  </div>
843
843
  <div class="saut_ligne"></div>
844
844
  </div>
845
845
  <div class=box>
846
846
  <img src="http://medias.lemonde.fr/mmpub/img/icn/fl-rg.gif" alt="">
847
- <a href="http://abonnes.lemonde.fr/web/ep/blog_inscrit/1,27-0,1-0,0.html">Cr�ez votre blog</a>
847
+ <a href="http://abonnes.lemonde.fr/web/ep/blog_inscrit/1,27-0,1-0,0.html">Cr�ez votre blog</a>
848
848
  <br/>
849
849
  <img src="http://medias.lemonde.fr/mmpub/img/icn/fl-rg.gif" alt="">
850
850
  <a href="/web/blogs/0,39-0,48-0,0.html">Tous les blogs</a>
@@ -890,13 +890,13 @@ var slide_show_img_widget = 0;
890
890
  var slide_show_text_elem = 0;
891
891
  var slide_show_num_elem = 0;
892
892
 
893
- //) && ($ct < $_gab_contexte_affichage->_confAffichage['FairePart_/General']['nb_fairepart_max_en_une']);
893
+ //) && ($ct < $_gab_contexte_affichage->_confAffichage['FairePart_/General']['nb_fairepart_max_en_une']);
894
894
  construit_carnet_slide_show = function()
895
895
  {
896
896
  var slide_show_img_elem = document.getElementById ('div_img_slide_show_carnet');
897
897
  var slide_show_text_elem = document.getElementById ('div_text_slide_show_carnet');
898
898
  var slide_show_num_elem = document.getElementById ('div_num_slide_show_carnet');
899
-
899
+
900
900
  slide_show_img_widget = new slideShowWidget(slide_show_img_elem);
901
901
  slide_show_text_widget = new slideShowWidget(slide_show_text_elem);
902
902
  slide_show_num_widget = new slideShowWidget(slide_show_num_elem);
@@ -909,7 +909,7 @@ construit_carnet_slide_show = function()
909
909
  var num = slide_show_img_widget.showRandomFirstElem();
910
910
  slide_show_text_widget.showFirstElemWithNum(num);
911
911
  slide_show_num_widget.showFirstElemWithNum(num);
912
-
912
+
913
913
  //on demarre un slide show en auto
914
914
  }
915
915
 
@@ -919,29 +919,29 @@ if (window.addEventListener)
919
919
  window.addEventListener("load", construit_carnet_slide_show, false);
920
920
  else
921
921
  window.attachEvent("onload", construit_carnet_slide_show);
922
-
922
+
923
923
  </script>
924
924
 
925
925
 
926
926
  <div style="display:none;">
927
927
  <img width="140"
928
928
  onclick="window.open('http://fairepart.lemonde.fr/faire-part/visualisation-faire-part-du-jour.html?_fpid=1-1352502000-18589-71ff96489cdc356084dffedefe5f1da8');"
929
- height="105px"
930
- style="cursor:pointer"
929
+ height="105px"
930
+ style="cursor:pointer"
931
931
  title="naissance"
932
932
  alt="naissance"
933
933
  id="image_carnet_0" src="http://medias.lemonde.fr/mmpub/fp/img/a/aa/aa1/aa16306b0d55f9139cbc8abf80d95389/orane_284_moyenne.jpg" border="0"></img>
934
-
934
+
935
935
  <div style='width:33px;text-align:center;height:20px;' id="fairepart_num_carnet_0" >
936
936
  1/1 <div class="saut_ligne"></div>
937
937
  </div>
938
-
938
+
939
939
  <div style='width:160px;' id="texte_carnet_0">
940
940
  <a target="_blank" href="http://fairepart.lemonde.fr/faire-part/visualisation-faire-part-du-jour.html?_fpid=1-1352502000-18589-71ff96489cdc356084dffedefe5f1da8">
941
941
  naissance </a>
942
942
  <div class="saut_ligne"></div>
943
943
  </div>
944
-
944
+
945
945
  </div>
946
946
 
947
947
  <div class=pg-mil>
@@ -949,14 +949,14 @@ else
949
949
  <div class="box">
950
950
  <div style="width:140px;height:105px;float:left; position:relative;overflow:display;" id="div_img_slide_show_carnet">
951
951
  </div>
952
-
952
+
953
953
  <div style="float:left;padding-left:5px;">
954
-
954
+
955
955
  <a href="javascript:var a=1;"><img border=0 src="http://medias.lemonde.fr/mmpub/img/tit/noire_prev.gif"></img></a>
956
956
  <a href="javascript:var a=1;"><img border=0 src="http://medias.lemonde.fr/mmpub/img/tit/noire_suiv.gif"></img></a>
957
957
  <div style="width:33px;height:25px;overflow:display;position:relative;" id="div_num_slide_show_carnet"></div>
958
958
  </div>
959
-
959
+
960
960
  <div class="saut_ligne" style="height:3px;"></div>
961
961
  <div style="width:160px;height:62px;position:relative;" id="div_text_slide_show_carnet">
962
962
  </div>
@@ -974,18 +974,18 @@ else
974
974
  </div>
975
975
  <!-- /gab-pv-appel_fairepart.php --><!-- gab-pv-derniere_reaction.php -->
976
976
  <div class=pg-mil>
977
- <div class=gr-tt>VOTRE DERNI�RE R�ACTION</div>
978
- <div class=box><div class=lien>&quot;(1) Sur les deux groupes que j&#039;ai trouv� qui se disent r�sistants, quasi 0 �change entre membres. (2) Et, oui, Claire G., merci de le rappeler, rien de nouveau. (3) Quelle solution ? Vivre &quot;under the radar&quot;, sans cartes, sans identit�, suspect �ternel � d�faut d&#039;�tre prospect �ternel ? Ou le retour au maquis. Mais apparemment, on finit toujours par s&#039;y faire attraper aussi ;)&quot;
979
- <div align=right class=type-gr>par Stephane G.</div></div><div class=lien>Une des 34 r�actions � l'article <a href=/web/article/0,1-0@2-651865,36-977479,0.html>Les membres de Facebook appellent � la r�sistance</a></div></div><div class=box><img src=http://medias.lemonde.fr/mmpub/img/icn/fl-rg.gif alt=""> <a href=/web/article/reactions/0,1-0@2-651865,36-977479,0.html>R�agissez � cet article</a></div></div><!-- /gab-pv-derniere_reaction.php -->
980
- <!-- gab-pv-recommandes.php -->
981
- <!-- elements recommand�s appel du composant: /web/reco_element/cmp/0,0-0,45-3208,0.html -->
977
+ <div class=gr-tt>VOTRE DERNI�RE R�ACTION</div>
978
+ <div class=box><div class=lien>&quot;(1) Sur les deux groupes que j&#039;ai trouv� qui se disent r�sistants, quasi 0 �change entre membres. (2) Et, oui, Claire G., merci de le rappeler, rien de nouveau. (3) Quelle solution ? Vivre &quot;under the radar&quot;, sans cartes, sans identit�, suspect �ternel � d�faut d&#039;�tre prospect �ternel ? Ou le retour au maquis. Mais apparemment, on finit toujours par s&#039;y faire attraper aussi ;)&quot;
979
+ <div align=right class=type-gr>par Stephane G.</div></div><div class=lien>Une des 34 r�actions � l'article <a href=/web/article/0,1-0@2-651865,36-977479,0.html>Les membres de Facebook appellent � la r�sistance</a></div></div><div class=box><img src=http://medias.lemonde.fr/mmpub/img/icn/fl-rg.gif alt=""> <a href=/web/article/reactions/0,1-0@2-651865,36-977479,0.html>R�agissez � cet article</a></div></div><!-- /gab-pv-derniere_reaction.php -->
980
+ <!-- gab-pv-recommandes.php -->
981
+ <!-- elements recommand�s appel du composant: /web/reco_element/cmp/0,0-0,45-3208,0.html -->
982
982
  <!-- Rosae:: mardi 13 novembre 2007 15:15:16.4057 5.448 terre -->
983
983
  <div class=pg-mil>
984
- <div class="gr-tt">LES PLUS ENVOY�S</div>
985
- <div class="box"><div class="lien-2"><a href=/web/article/0,1-0@2-3224,36-977303,0.html>Moi, Laurent S., chirurgien de l'h�pital public</a> Soci�t�</div><div class="lien-2"><a href=/web/article/0,1-0@2-651865,36-977479,0.html>Les membres de Facebook appellent � la r�sistance</a> Technologies</div><div class="lien-2"><a href=/web/article/0,1-0@2-3224,36-977259,0.html>HLM : la r�novation urbaine pourrait accro�tre la p�nurie</a> Soci�t�</div><div class="lien-2"><a href=/web/article/0,1-0@2-3234,36-977278,0.html>Fran�ois Bourguignon : "La Banque mondiale peut devenir la banque de l'environnement"</a> Economie</div><div class="lien-2"><a href=/web/portfolio/0,12-0@2-3244,31-976300,0.html>Six esp�ces d'ours sur huit menac�es</a> Environnement, Sciences</div><div class="lien-2"><a href=/web/article/0,1-0@2-3224,36-977089,0.html>La coordination �tudiante appelle au blocage des gares mardi</a> Soci�t�</div><div class="lien-2"><a href=/web/article/0,1-0@2-3224,36-977105,0.html>Les gr�ves annonc�es pour les quinze prochains jours</a> Soci�t�</div><div class="lien-2"><a href=/web/article/0,1-0@2-3234,36-977276,0.html>La d�couverte de r�serves de p�trole ferait du Br�sil l'un des dix principaux producteurs</a> Economie</div> </div>
984
+ <div class="gr-tt">LES PLUS ENVOY�S</div>
985
+ <div class="box"><div class="lien-2"><a href=/web/article/0,1-0@2-3224,36-977303,0.html>Moi, Laurent S., chirurgien de l'h�pital public</a> Soci�t�</div><div class="lien-2"><a href=/web/article/0,1-0@2-651865,36-977479,0.html>Les membres de Facebook appellent � la r�sistance</a> Technologies</div><div class="lien-2"><a href=/web/article/0,1-0@2-3224,36-977259,0.html>HLM : la r�novation urbaine pourrait accro�tre la p�nurie</a> Soci�t�</div><div class="lien-2"><a href=/web/article/0,1-0@2-3234,36-977278,0.html>Fran�ois Bourguignon : "La Banque mondiale peut devenir la banque de l'environnement"</a> Economie</div><div class="lien-2"><a href=/web/portfolio/0,12-0@2-3244,31-976300,0.html>Six esp�ces d'ours sur huit menac�es</a> Environnement, Sciences</div><div class="lien-2"><a href=/web/article/0,1-0@2-3224,36-977089,0.html>La coordination �tudiante appelle au blocage des gares mardi</a> Soci�t�</div><div class="lien-2"><a href=/web/article/0,1-0@2-3224,36-977105,0.html>Les gr�ves annonc�es pour les quinze prochains jours</a> Soci�t�</div><div class="lien-2"><a href=/web/article/0,1-0@2-3234,36-977276,0.html>La d�couverte de r�serves de p�trole ferait du Br�sil l'un des dix principaux producteurs</a> Economie</div> </div>
986
986
  </div><div class=pg-mil>
987
- <div class=gr-tt>VOS RECOMMAND�S</div>
988
- <div class=box><div class=lien-2><a href=http://www.lemonde.fr/web/article/0,1-0@2-3224,36-977084,0.html>Le principal adjoint d'un coll�ge de Pierrefitte, en Seine-Saint-Denis, poignard�</a> Soci�t�</div><div class=lien-2><a href=http://www.lemonde.fr/web/article/0,1-0@2-3232,36-977230,0.html>Petits conseils � l'usage des voyageurs, par Laurent Greilsamer</a> Opinions</div><div class=lien-2><a href=http://www.lemonde.fr/web/article/0,1-0@2-823448,36-977534,0.html>Le collectif ACDC accuse l'Insee d'"escamoter" les vrais chiffres du ch�mage</a> Politique</div><div class=lien-2><a href=http://www.lemonde.fr/web/article/0,1-0@2-3216,36-977304,0.html>Chantiers interdits</a> Asie-Pacifique</div></div></div> <!-- elements recommand�s : fin appel du composant -->
987
+ <div class=gr-tt>VOS RECOMMAND�S</div>
988
+ <div class=box><div class=lien-2><a href=http://www.lemonde.fr/web/article/0,1-0@2-3224,36-977084,0.html>Le principal adjoint d'un coll�ge de Pierrefitte, en Seine-Saint-Denis, poignard�</a> Soci�t�</div><div class=lien-2><a href=http://www.lemonde.fr/web/article/0,1-0@2-3232,36-977230,0.html>Petits conseils � l'usage des voyageurs, par Laurent Greilsamer</a> Opinions</div><div class=lien-2><a href=http://www.lemonde.fr/web/article/0,1-0@2-823448,36-977534,0.html>Le collectif ACDC accuse l'Insee d'"escamoter" les vrais chiffres du ch�mage</a> Politique</div><div class=lien-2><a href=http://www.lemonde.fr/web/article/0,1-0@2-3216,36-977304,0.html>Chantiers interdits</a> Asie-Pacifique</div></div></div> <!-- elements recommand�s : fin appel du composant -->
989
989
  <!-- /gab-pv-recommandes.php -->
990
990
  <!-- gab-pv-lien_promo_appel.php -->
991
991
  <link rel="stylesheet" type="text/css" href="http://medias.lemonde.fr/mmpub/css/lienpromo.css" />
@@ -994,110 +994,110 @@ else
994
994
  <div class="mv-box">
995
995
  <div class="lien-2"> <a href="/web/lien_promo/0,55-0,1-0,0.html?keyword=voyage&accroche=Votre voyage au meilleur prix">Voyages : Envolez-vous en quelques clics</a> </div>
996
996
  <div class="lien-2"> <a href="/web/lien_promo/0,55-0,1-0,0.html?keyword=rencontre&accroche=Faites des rencontres en quelques clics !">Rencontre : 3,2,1... Connectez-vous !</a> </div>
997
- <div class="lien-2"> <a href="/web/lien_promo/0,55-0,1-0,0.html?keyword=billet avion&accroche=R�servez votre vol en ligne">Billet d'avion : R�servez en ligne</a> </div>
997
+ <div class="lien-2"> <a href="/web/lien_promo/0,55-0,1-0,0.html?keyword=billet avion&accroche=R�servez votre vol en ligne">Billet d'avion : R�servez en ligne</a> </div>
998
998
  <div class="lien-2"> <a href="/web/lien_promo/0,55-0,1-0,0.html?keyword=achat ordinateur&accroche=PC portables en promotion !">Ordinateur portable : Les promos du web</a> </div>
999
999
  </div>
1000
1000
  </div>
1001
1001
  <!-- gab-pv-lien_promo_appel.php -->
1002
1002
  <!-- /gab-ssq-1_col_empil_fixe_sans_espace.php -->
1003
1003
 
1004
-
1004
+
1005
1005
  </td>
1006
1006
  <td width="338" class="pg-dtebg" >
1007
1007
  <!-- gab-ssq-col_droite_pub_fixe.php -->
1008
1008
  <center><script language=JavaScript>OAS_AD('TopRight');</script></center>
1009
1009
 
1010
- <!-- gab-pv-sequence_une_en_direct.php -->
1011
- <div class="pg-dte"> <div class="header-bg-direct"><div style="width:5px;float:left;">&nbsp;</div><div style="float:left;"><img src="http://medias.lemonde.fr/mmpub/img/tit/animated_en_direct_icon.gif"></div><div class="header-txt" style="float:left;">EN DIRECT</div></div><div class="box" style="min-height:66px;"><a href="/web/chat/0,46-0@2-3328,55-976754,0.html"><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/09/v_5_ill_976778_birnbaum.jpg width=87 height=111 border=0 alt='Jean Birnbaum, journaliste au &quot;Monde&quot;. | DR' title='Jean Birnbaum, journaliste au &quot;Monde&quot;. | DR' align="right" style="display:block"></a><span class="type-direct">Chat � 15 heures</span><br><a href="/web/chat/0,46-0@2-3328,55-976754,0.html">Femmes-hommes : o� est pass�e la diff�rence des sexes ?</a><br>D�bat en direct avec Jean Birnbaum, journaliste au "Monde", mardi 13 novembre 2007 � 15 h 00<div style="clear:both;"></div></div><div class="box"><span class="type-gr">Chat mercredi � 15 heures</span><a href="/web/chat/0,46-0@2-3234,55-975809,0.html" style="margin-left:5px;">Quels peuvent �tre les impacts de la hausse continuelle de l'euro sur les �conomies europ�ennes ?</a><br></div></div><!-- /gab-pv-sequence_une_en_direct.php-->
1010
+ <!-- gab-pv-sequence_une_en_direct.php -->
1011
+ <div class="pg-dte"> <div class="header-bg-direct"><div style="width:5px;float:left;">&nbsp;</div><div style="float:left;"><img src="http://medias.lemonde.fr/mmpub/img/tit/animated_en_direct_icon.gif"></div><div class="header-txt" style="float:left;">EN DIRECT</div></div><div class="box" style="min-height:66px;"><a href="/web/chat/0,46-0@2-3328,55-976754,0.html"><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/09/v_5_ill_976778_birnbaum.jpg width=87 height=111 border=0 alt='Jean Birnbaum, journaliste au &quot;Monde&quot;. | DR' title='Jean Birnbaum, journaliste au &quot;Monde&quot;. | DR' align="right" style="display:block"></a><span class="type-direct">Chat � 15 heures</span><br><a href="/web/chat/0,46-0@2-3328,55-976754,0.html">Femmes-hommes : o� est pass�e la diff�rence des sexes ?</a><br>D�bat en direct avec Jean Birnbaum, journaliste au "Monde", mardi 13 novembre 2007 � 15 h 00<div style="clear:both;"></div></div><div class="box"><span class="type-gr">Chat mercredi � 15 heures</span><a href="/web/chat/0,46-0@2-3234,55-975809,0.html" style="margin-left:5px;">Quels peuvent �tre les impacts de la hausse continuelle de l'euro sur les �conomies europ�ennes ?</a><br></div></div><!-- /gab-pv-sequence_une_en_direct.php-->
1012
1012
  <center><script language=JavaScript>if (provenance_elt !=-1) {OAS_AD('x40')} else {OAS_AD('Middle')}</script></center>
1013
1013
 
1014
- <!-- gab-pv-appel_element.php -->
1015
- <div class=pg-dte><a href="/web/panorama/0,11-0@2-3236,32-977215,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_9_radiozapping_07111_326.jpg width=326 height=60 border=0 alt='Le Radiozapping, chaque jour � midi, tout ce qu&#039;il ne fallait pas rater des matinales radio. | Le Monde.fr' title='Le Radiozapping, chaque jour � midi, tout ce qu&#039;il ne fallait pas rater des matinales radio. | Le Monde.fr' ></a></div><!-- /gab-pv-appel_element.php-->
1016
- <!-- gab-pv-appel_ensemble.php -->
1014
+ <!-- gab-pv-appel_element.php -->
1015
+ <div class=pg-dte><a href="/web/panorama/0,11-0@2-3236,32-977215,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_9_radiozapping_07111_326.jpg width=326 height=60 border=0 alt='Le Radiozapping, chaque jour � midi, tout ce qu&#039;il ne fallait pas rater des matinales radio. | Le Monde.fr' title='Le Radiozapping, chaque jour � midi, tout ce qu&#039;il ne fallait pas rater des matinales radio. | Le Monde.fr' ></a></div><!-- /gab-pv-appel_element.php-->
1016
+ <!-- gab-pv-appel_ensemble.php -->
1017
1017
  <div class="pg-dte">
1018
- <div class="header-bg"><div class="header-txt">GR�VE DU 14 NOVEMBRE</div></div>
1018
+ <div class="header-bg"><div class="header-txt">GR�VE DU 14 NOVEMBRE</div></div>
1019
1019
  <div class="box">
1020
-
1020
+
1021
1021
  <table width=313 cellpadding=0 cellspacing=0 border=0>
1022
- <tr valign=top>
1023
- <td style=padding-right:4px><a href="/web/article/0,1-0@2-3224,36-977533@51-977527,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/12/h_1_ill_968143_204180.jpg width=87 height=58 border=0 alt='La direction de la SNCF s&#039;attend � un taux de gr�vistes de 70 % � partir du 13 novembre au soir, un taux �quivalent � celui enregistr� lors de la gr�ve du 18 octobre. | REUTERS/BENOIT TESSIER' title='La direction de la SNCF s&#039;attend � un taux de gr�vistes de 70 % � partir du 13 novembre au soir, un taux �quivalent � celui enregistr� lors de la gr�ve du 18 octobre. | REUTERS/BENOIT TESSIER' ></a></td>
1022
+ <tr valign=top>
1023
+ <td style=padding-right:4px><a href="/web/article/0,1-0@2-3224,36-977533@51-977527,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/12/h_1_ill_968143_204180.jpg width=87 height=58 border=0 alt='La direction de la SNCF s&#039;attend � un taux de gr�vistes de 70 % � partir du 13 novembre au soir, un taux �quivalent � celui enregistr� lors de la gr�ve du 18 octobre. | REUTERS/BENOIT TESSIER' title='La direction de la SNCF s&#039;attend � un taux de gr�vistes de 70 % � partir du 13 novembre au soir, un taux �quivalent � celui enregistr� lors de la gr�ve du 18 octobre. | REUTERS/BENOIT TESSIER' ></a></td>
1024
1024
  <td>
1025
1025
  <div class=type-gr>Pratique
1026
- <a href="/web/article/0,1-0@2-3224,36-977533@51-977527,0.html" >De fortes perturbations pr�vues dans les transports</a><br>
1026
+ <a href="/web/article/0,1-0@2-3224,36-977533@51-977527,0.html" >De fortes perturbations pr�vues dans les transports</a><br>
1027
1027
  </td>
1028
1028
  </tr>
1029
1029
  <tr>
1030
1030
  <td colspan=2>
1031
-
1032
- <div class=lien><span class=type-gr>Revue de Web</span> <a href="/web/articleinteractif/0,41-0@2-3224,49-977504@51-977527,0.html" >Se d�placer pendant les gr�ves : le syst�me D</a><br></div>
1033
-
1034
- <div class=lien><span class=type-gr>Les cl�s</span> <a href="/web/article/0,1-0@2-3224,36-977483@51-977527,0.html" >Le point sur la r�forme des r�gimes sp�ciaux de retraite</a><br></div>
1035
-
1031
+
1032
+ <div class=lien><span class=type-gr>Revue de Web</span> <a href="/web/articleinteractif/0,41-0@2-3224,49-977504@51-977527,0.html" >Se d�placer pendant les gr�ves : le syst�me D</a><br></div>
1033
+
1034
+ <div class=lien><span class=type-gr>Les cl�s</span> <a href="/web/article/0,1-0@2-3224,36-977483@51-977527,0.html" >Le point sur la r�forme des r�gimes sp�ciaux de retraite</a><br></div>
1035
+
1036
1036
  </td>
1037
1037
  </tr>
1038
- </table>
1038
+ </table>
1039
1039
  </div></div></div><!-- /gab-pv-appel_ensemble.php-->
1040
- <!-- gab-pv-scr_sequence_une_edition_abonnes.php -->
1041
- <div class="pg-dte"> <div class="box-ab"> <div class="header-bg-ab"></div> <div style="text-align:center;padding:2px;"> <table cellspacing="2" width="316" style="margin:auto"><tr height="108px"><td width="148px"><p><span class="type-abo">La 12:15</span><br><a href="http://abonnes.lemonde.fr/web/newsletter/0,30-0,62-977115@60-1@45-2,0.html" >Japon : l'�conomie cro�t plus que pr�vu - Vodafone en hausse - Le prix du baril p�se sur la demande</a></p><p><span class="type-abo">Dossier</span><br><a href="http://abonnes.lemonde.fr/web/dossier/0,3-0@2-3224,14-835881,0.html" >Ecole : l'in�galit� des chances ?</a></p></td><td width="160px"><a href="http://abonnes.lemonde.fr/web/thematique/0,42-0@2-823448,53-974441,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/12/h_12_thema_EU_traite_155x103.jpg width=155 height=103 border=0 alt='Adopt� les 18 et 19 octobre 2007 par le Conseil europ�en, le trait� de Lisbonne devra �tre ratifi� par chacun des vingt-sept pays membres avant les �lections europ�ennes de juin 2009. | AP/ALIK KEPLICZ' title='Adopt� les 18 et 19 octobre 2007 par le Conseil europ�en, le trait� de Lisbonne devra �tre ratifi� par chacun des vingt-sept pays membres avant les �lections europ�ennes de juin 2009. | AP/ALIK KEPLICZ' style="margin:3px;"></a></td></tr><tr><td style="background-color:white;" colspan="2" height="20px"><a href="/cgi-bin/ACHATS/acheter.cgi?offre=ZOP"><p><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-rg.gif" border=0> 6&euro; par mois,30 jours offerts. Abonnez-vous</a></p></td></tr></table></div></div></div><!-- /gab-pv-scr_sequence_une_edition_abonnes.php-->
1042
- <!-- gab-pv-appel_element.php -->
1040
+ <!-- gab-pv-scr_sequence_une_edition_abonnes.php -->
1041
+ <div class="pg-dte"> <div class="box-ab"> <div class="header-bg-ab"></div> <div style="text-align:center;padding:2px;"> <table cellspacing="2" width="316" style="margin:auto"><tr height="108px"><td width="148px"><p><span class="type-abo">La 12:15</span><br><a href="http://abonnes.lemonde.fr/web/newsletter/0,30-0,62-977115@60-1@45-2,0.html" >Japon : l'�conomie cro�t plus que pr�vu - Vodafone en hausse - Le prix du baril p�se sur la demande</a></p><p><span class="type-abo">Dossier</span><br><a href="http://abonnes.lemonde.fr/web/dossier/0,3-0@2-3224,14-835881,0.html" >Ecole : l'in�galit� des chances ?</a></p></td><td width="160px"><a href="http://abonnes.lemonde.fr/web/thematique/0,42-0@2-823448,53-974441,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/12/h_12_thema_EU_traite_155x103.jpg width=155 height=103 border=0 alt='Adopt� les 18 et 19 octobre 2007 par le Conseil europ�en, le trait� de Lisbonne devra �tre ratifi� par chacun des vingt-sept pays membres avant les �lections europ�ennes de juin 2009. | AP/ALIK KEPLICZ' title='Adopt� les 18 et 19 octobre 2007 par le Conseil europ�en, le trait� de Lisbonne devra �tre ratifi� par chacun des vingt-sept pays membres avant les �lections europ�ennes de juin 2009. | AP/ALIK KEPLICZ' style="margin:3px;"></a></td></tr><tr><td style="background-color:white;" colspan="2" height="20px"><a href="/cgi-bin/ACHATS/acheter.cgi?offre=ZOP"><p><img src="http://medias.lemonde.fr/mmpub/img/icn/fl-rg.gif" border=0> 6&euro; par mois,30 jours offerts. Abonnez-vous</a></p></td></tr></table></div></div></div><!-- /gab-pv-scr_sequence_une_edition_abonnes.php-->
1042
+ <!-- gab-pv-appel_element.php -->
1043
1043
  <div class=pg-dte><a href="http://abonnes.lemonde.fr/web/vi/0,47-0@2-3212,54-969056,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/10/23/h_9_appel_petrole_afrique326.jpg width=326 height=60 border=0 alt='Pipeline en Afrique. | A. FARNSWORTH' title='Pipeline en Afrique. | A. FARNSWORTH' ></a></div><!-- /gab-pv-appel_element.php--><center><script language=JavaScript>OAS_AD('Middle2');</script></center>
1044
- <!-- gab-pv-appel_ensemble.php -->
1044
+ <!-- gab-pv-appel_ensemble.php -->
1045
1045
  <div class="pg-dte">
1046
1046
  <div class="header-bg"><div class="header-txt">SORTIE DU NOUVEL ALBUM DE "XIII"</div></div>
1047
1047
  <div class="box">
1048
-
1048
+
1049
1049
  <table width=313 cellpadding=0 cellspacing=0 border=0>
1050
- <tr valign=top>
1051
- <td style=padding-right:4px><a href="/web/article/0,1-0@2-3260,36-977549@51-977554,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_1_ill_977553_sans-titre-2.jpg width=87 height=58 border=0 alt='La s�rie de bande dessin�e &quot;XIII&quot; a vu le jour en 1984. | Dargaud' title='La s�rie de bande dessin�e &quot;XIII&quot; a vu le jour en 1984. | Dargaud' ></a></td>
1050
+ <tr valign=top>
1051
+ <td style=padding-right:4px><a href="/web/article/0,1-0@2-3260,36-977549@51-977554,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_1_ill_977553_sans-titre-2.jpg width=87 height=58 border=0 alt='La s�rie de bande dessin�e &quot;XIII&quot; a vu le jour en 1984. | Dargaud' title='La s�rie de bande dessin�e &quot;XIII&quot; a vu le jour en 1984. | Dargaud' ></a></td>
1052
1052
  <td>
1053
1053
  <div class=type-gr>Les faits
1054
- <a href="/web/article/0,1-0@2-3260,36-977549@51-977554,0.html" >"XIII" : un h�ros, 1 million de cibles</a><br>
1054
+ <a href="/web/article/0,1-0@2-3260,36-977549@51-977554,0.html" >"XIII" : un h�ros, 1 million de cibles</a><br>
1055
1055
  </td>
1056
1056
  </tr>
1057
1057
  <tr>
1058
1058
  <td colspan=2>
1059
-
1060
- <div class=lien><span class=type-gr>Entretien</span> <a href="/web/article/0,1-0@2-3260,36-977548@51-977554,0.html" >"Je pr�f�re frustrer que d�cevoir"</a><br></div>
1061
-
1059
+
1060
+ <div class=lien><span class=type-gr>Entretien</span> <a href="/web/article/0,1-0@2-3260,36-977548@51-977554,0.html" >"Je pr�f�re frustrer que d�cevoir"</a><br></div>
1061
+
1062
1062
  </td>
1063
1063
  </tr>
1064
- </table>
1064
+ </table>
1065
1065
  </div></div></div><!-- /gab-pv-appel_ensemble.php-->
1066
1066
 
1067
- <!-- gab-pv-promotion.php -->
1067
+ <!-- gab-pv-promotion.php -->
1068
1068
  <style>
1069
1069
  .appel-lepost { background-color: #fff; font-family:Arial,sans-serif; font-size:10px; border:1px solid #F83C77; margin:5px 0px 5px; position:relative; text-align:left; padding:0; }
1070
1070
  .appel-lepost ul { margin:1em 0.5em 1em; padding: 0px; }
1071
- .appel-lepost li { line-height: 1.5em; margin-bottom:0.5em; list-style-type:none; }
1071
+ .appel-lepost li { line-height: 1.5em; margin-bottom:0.5em; list-style-type:none; }
1072
1072
  .appel-lepost h4.intitule-lien { border:medium none; margin:0pt; padding:0pt; text-align:center;}
1073
1073
  .appel-lepost h4.intitule-lien a { color:#003366; font-size:12px; }
1074
- .appel-lepost h4.intitule-lien a:hover { color:#990000; font-size:12px; }
1074
+ .appel-lepost h4.intitule-lien a:hover { color:#990000; font-size:12px; }
1075
1075
  </style><div class=pg-dte> <div align="center"><img src="http://a1692.g.akamai.net/n/1692/2042/1077898746/pubs.lemonde.fr/RealMedia/ads/Creatives/OasDefault/publicite/pub300t.gif"></div><div class="appel-lepost"><script language=javascript>
1076
1076
  num = parseInt(Math.random()*7);
1077
1077
  xnum = num+3;
1078
- nom_photo = 'http://medias.lemonde.fr/mmpub/img/tetiere_post_'+num+'.jpg';
1079
- document.write('<a href="http://www.lepost.fr/?xtor=ADC-2'+xnum+'" target="_blank"><img src="'+nom_photo+'" width=324 border="0"></a>');
1078
+ nom_photo = 'http://medias.lemonde.fr/mmpub/img/tetiere_post_'+num+'.jpg';
1079
+ document.write('<a href="http://www.lepost.fr/?xtor=ADC-2'+xnum+'" target="_blank"><img src="'+nom_photo+'" width=324 border="0"></a>');
1080
1080
  </script><ul>
1081
1081
  <li>
1082
- <h4 class="intitule-lien"> <a href="http://www.lepost.fr/article/2007/11/12/1050505_exclusif-le-nouveau-johnny-aujourd-hui-sur-le-post.html?xtor=ADC-16" target="_blank"><span style="color:#F83C77;">�</span> Aujourd'hui, Johnny en EXCLUSIVITE sur Le Post</a></h4>
1082
+ <h4 class="intitule-lien"> <a href="http://www.lepost.fr/article/2007/11/12/1050505_exclusif-le-nouveau-johnny-aujourd-hui-sur-le-post.html?xtor=ADC-16" target="_blank"><span style="color:#F83C77;">�</span> Aujourd'hui, Johnny en EXCLUSIVITE sur Le Post</a></h4>
1083
1083
  </li>
1084
1084
  <li>
1085
- <h4 class="intitule-lien"> <a href="http://www.lepost.fr/article/2007/11/06/1047688_les-universites-de-rennes-et-toulouse-sont-bloquees.html?xtor=ADC-19" target="_blank"><span style="color:#F83C77;">�</span> Les facs bloqu�es : ville par ville</a></h4>
1086
- </li>
1085
+ <h4 class="intitule-lien"> <a href="http://www.lepost.fr/article/2007/11/06/1047688_les-universites-de-rennes-et-toulouse-sont-bloquees.html?xtor=ADC-19" target="_blank"><span style="color:#F83C77;">�</span> Les facs bloqu�es : ville par ville</a></h4>
1086
+ </li>
1087
1087
  <li>
1088
- <h4 class="intitule-lien"> <a href="http://www.lepost.fr/article/2007/11/12/1050577_comment-sarkozy-va-t-il-detourner-les-medias-de-la-greve.html?xtor=ADC-13" target="_blank"><span style="color:#F83C77;">�</span> Gr�ves : comment Sarkozy pourrait d�tourner l'attention des m�dias</a></h4>
1089
- </li>
1088
+ <h4 class="intitule-lien"> <a href="http://www.lepost.fr/article/2007/11/12/1050577_comment-sarkozy-va-t-il-detourner-les-medias-de-la-greve.html?xtor=ADC-13" target="_blank"><span style="color:#F83C77;">�</span> Gr�ves : comment Sarkozy pourrait d�tourner l'attention des m�dias</a></h4>
1089
+ </li>
1090
1090
  </ul>
1091
1091
  <div align="center">
1092
- <a href="http://www.lepost.fr/?xtor=ADC-22" target="_blank"><img alt="" src="http://medias.lemonde.fr/mmpub/img/footer_post.png" border="0" style="margin-bottom: 3px;" /></a>
1092
+ <a href="http://www.lepost.fr/?xtor=ADC-22" target="_blank"><img alt="" src="http://medias.lemonde.fr/mmpub/img/footer_post.png" border="0" style="margin-bottom: 3px;" /></a>
1093
1093
  </div>
1094
1094
  </div>
1095
1095
  </div><!-- /gab-pv-promotion.php-->
1096
1096
 
1097
1097
 
1098
1098
 
1099
- <!-- gab-pv-sequence_une_voir.php -->
1100
- <div class="pg-dte"> <div class="header-bg"><div class="header-txt">VOIR</div></div> <div class="box"><table border=0 cellspacing="0" cellpadding="0"><tr><td><div class="no-underline"><a href="/web/portfolio/0,12-0@2-3208,31-977892,0.html" ><div class="bt-big-off" id="voir_bt_0" onmouseover="voir_on(0)" onmouseout="voir_out(0)">Dessins du jour</div></a></div></td><td><div class="no-underline"><a href="/web/portfolio/0,12-0@2-3210,31-977667,0.html" ><div class="bt-big-off" id="voir_bt_1" onmouseover="voir_on(1)" onmouseout="voir_out(1)">Portfolio</div></a></div></td><td><div class="no-underline"><a href="/web/portfolio/0,12-0@2-3244,31-976300,0.html" ><div class="bt-big-off" id="voir_bt_2" onmouseover="voir_on(2)" onmouseout="voir_out(2)">Portfolio</div></a></div></td></tr><tr><td><div class="no-underline"><a href="/web/portfolio/0,12-0@2-3246,31-977650,0.html" ><div class="bt-big-off" id="voir_bt_3" onmouseover="voir_on(3)" onmouseout="voir_out(3)">Portfolio</div></a></div></td><td><div class="no-underline"><a href="/web/video/0,47-0@2-3210,54-977600,0.html" ><div class="bt-big-off" id="voir_bt_4" onmouseover="voir_on(4)" onmouseout="voir_out(4)">Vid&eacute;o</div></a></div></td><td><div class="no-underline"><a href="/web/portfolio/0,12-0@2-3246,31-973772,0.html" ><div class="bt-big-off" id="voir_bt_5" onmouseover="voir_on(5)" onmouseout="voir_out(5)">Portfolio</div></a></div></td></tr><tr><td colspan="3"><div class="content"><div id="voir_content_0" style="display:none;"><a href='/web/portfolio/0,12-0@2-3208,31-977892,0.html' ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_12_ill_977891_07111419_napo+x1d1_web.jpg width=155 height=103 border=0 alt='Jour de gr�ve | ' title='Jour de gr�ve | ' style="float:left; margin-right:5px;margin-bottom:3px;" vspace=4 hspace=1><div class=lien>Mercredi 14 novembre 2007</div></a></div><div id="voir_content_1" style="display:none;"><a href='/web/portfolio/0,12-0@2-3210,31-977667,0.html' ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_12_ill_977657_277794.jpg width=155 height=103 border=0 alt='Un oiseau couvert de p�trole, pr�s du port de Kavkaz, le 13 novembre 2007. | AP/SERGEI GRITS' title='Un oiseau couvert de p�trole, pr�s du port de Kavkaz, le 13 novembre 2007. | AP/SERGEI GRITS' style="float:left; margin-right:5px;margin-bottom:3px;" vspace=4 hspace=1><div class=lien>D�but de mar�e noire en mer Noire</div></a></div><div id="voir_content_2" style="display:none;"><a href='/web/portfolio/0,12-0@2-3244,31-976300,0.html' ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/09/v_13_ill_976249_giant_panda1_c_david_sheppard.jpg width=100 height=127 border=0 alt='Le panda g�ant est une esp�ce &quot;en danger&quot;, selon la classification de l&#039;UICN. | UICN' title='Le panda g�ant est une esp�ce &quot;en danger&quot;, selon la classification de l&#039;UICN. | UICN' style="float:left; margin-right:5px;margin-bottom:3px;" vspace=4 hspace=1><div class=lien>Six esp�ces d'ours sur huit menac�es</div></a></div><div id="voir_content_3" style="display:none;"><a href='/web/portfolio/0,12-0@2-3246,31-977650,0.html' ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_12_ill_977631_pennac_renaudot.jpg width=155 height=103 border=0 alt='Daniel Pennac, le 5 novembre 2007 � Paris. | AP' title='Daniel Pennac, le 5 novembre 2007 � Paris. | AP' style="float:left; margin-right:5px;margin-bottom:3px;" vspace=4 hspace=1><div class=lien>Les prix litt�raires 2007</div></a></div><div id="voir_content_4" style="display:none;"><a href='/web/video/0,47-0@2-3210,54-977600,0.html' ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_12_ill_977551_policemangun_282546.jpg width=155 height=103 border=0 alt='Des milliers de policiers anti-�meutes bloquaient mardi 13 novembre toutes les routes menant � un quartier de Lahore, o� Mme Bhutto s�journe actuellement. Les policiers ont pris position derri�re les v�hicules et une rang�e de barri�res en m�tal coiff�es de fil barbel�. La maison d&#039;un d�put� de son parti dans laquelle s�journe Mme Bhutto n&#039;�tait pas visible au-del� du p�rim�tre de s�curit�. | AFP/Arif Ali' title='Des milliers de policiers anti-�meutes bloquaient mardi 13 novembre toutes les routes menant � un quartier de Lahore, o� Mme Bhutto s�journe actuellement. Les policiers ont pris position derri�re les v�hicules et une rang�e de barri�res en m�tal coiff�es de fil barbel�. La maison d&#039;un d�put� de son parti dans laquelle s�journe Mme Bhutto n&#039;�tait pas visible au-del� du p�rim�tre de s�curit�. | AFP/Arif Ali' style="float:left; margin-right:5px;margin-bottom:3px;" vspace=4 hspace=1><div class=lien>La r�sidence de Mme Bhutto encercl�e par la police</div></a></div><div id="voir_content_5" style="display:none;"><a href='/web/portfolio/0,12-0@2-3246,31-973772,0.html' ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/02/h_12_ill_973776_cambodge.jpg width=155 height=103 border=0 alt=' | Mark Remissa/Photoquai' title=' | Mark Remissa/Photoquai' style="float:left; margin-right:5px;margin-bottom:3px;" vspace=4 hspace=1><div class=lien>Photoquai, premi�re biennale des images du monde � Paris</div></a></div></div></td></tr></table></div></div>
1099
+ <!-- gab-pv-sequence_une_voir.php -->
1100
+ <div class="pg-dte"> <div class="header-bg"><div class="header-txt">VOIR</div></div> <div class="box"><table border=0 cellspacing="0" cellpadding="0"><tr><td><div class="no-underline"><a href="/web/portfolio/0,12-0@2-3208,31-977892,0.html" ><div class="bt-big-off" id="voir_bt_0" onmouseover="voir_on(0)" onmouseout="voir_out(0)">Dessins du jour</div></a></div></td><td><div class="no-underline"><a href="/web/portfolio/0,12-0@2-3210,31-977667,0.html" ><div class="bt-big-off" id="voir_bt_1" onmouseover="voir_on(1)" onmouseout="voir_out(1)">Portfolio</div></a></div></td><td><div class="no-underline"><a href="/web/portfolio/0,12-0@2-3244,31-976300,0.html" ><div class="bt-big-off" id="voir_bt_2" onmouseover="voir_on(2)" onmouseout="voir_out(2)">Portfolio</div></a></div></td></tr><tr><td><div class="no-underline"><a href="/web/portfolio/0,12-0@2-3246,31-977650,0.html" ><div class="bt-big-off" id="voir_bt_3" onmouseover="voir_on(3)" onmouseout="voir_out(3)">Portfolio</div></a></div></td><td><div class="no-underline"><a href="/web/video/0,47-0@2-3210,54-977600,0.html" ><div class="bt-big-off" id="voir_bt_4" onmouseover="voir_on(4)" onmouseout="voir_out(4)">Vid&eacute;o</div></a></div></td><td><div class="no-underline"><a href="/web/portfolio/0,12-0@2-3246,31-973772,0.html" ><div class="bt-big-off" id="voir_bt_5" onmouseover="voir_on(5)" onmouseout="voir_out(5)">Portfolio</div></a></div></td></tr><tr><td colspan="3"><div class="content"><div id="voir_content_0" style="display:none;"><a href='/web/portfolio/0,12-0@2-3208,31-977892,0.html' ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_12_ill_977891_07111419_napo+x1d1_web.jpg width=155 height=103 border=0 alt='Jour de gr�ve | ' title='Jour de gr�ve | ' style="float:left; margin-right:5px;margin-bottom:3px;" vspace=4 hspace=1><div class=lien>Mercredi 14 novembre 2007</div></a></div><div id="voir_content_1" style="display:none;"><a href='/web/portfolio/0,12-0@2-3210,31-977667,0.html' ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_12_ill_977657_277794.jpg width=155 height=103 border=0 alt='Un oiseau couvert de p�trole, pr�s du port de Kavkaz, le 13 novembre 2007. | AP/SERGEI GRITS' title='Un oiseau couvert de p�trole, pr�s du port de Kavkaz, le 13 novembre 2007. | AP/SERGEI GRITS' style="float:left; margin-right:5px;margin-bottom:3px;" vspace=4 hspace=1><div class=lien>D�but de mar�e noire en mer Noire</div></a></div><div id="voir_content_2" style="display:none;"><a href='/web/portfolio/0,12-0@2-3244,31-976300,0.html' ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/09/v_13_ill_976249_giant_panda1_c_david_sheppard.jpg width=100 height=127 border=0 alt='Le panda g�ant est une esp�ce &quot;en danger&quot;, selon la classification de l&#039;UICN. | UICN' title='Le panda g�ant est une esp�ce &quot;en danger&quot;, selon la classification de l&#039;UICN. | UICN' style="float:left; margin-right:5px;margin-bottom:3px;" vspace=4 hspace=1><div class=lien>Six esp�ces d'ours sur huit menac�es</div></a></div><div id="voir_content_3" style="display:none;"><a href='/web/portfolio/0,12-0@2-3246,31-977650,0.html' ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_12_ill_977631_pennac_renaudot.jpg width=155 height=103 border=0 alt='Daniel Pennac, le 5 novembre 2007 � Paris. | AP' title='Daniel Pennac, le 5 novembre 2007 � Paris. | AP' style="float:left; margin-right:5px;margin-bottom:3px;" vspace=4 hspace=1><div class=lien>Les prix litt�raires 2007</div></a></div><div id="voir_content_4" style="display:none;"><a href='/web/video/0,47-0@2-3210,54-977600,0.html' ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_12_ill_977551_policemangun_282546.jpg width=155 height=103 border=0 alt='Des milliers de policiers anti-�meutes bloquaient mardi 13 novembre toutes les routes menant � un quartier de Lahore, o� Mme Bhutto s�journe actuellement. Les policiers ont pris position derri�re les v�hicules et une rang�e de barri�res en m�tal coiff�es de fil barbel�. La maison d&#039;un d�put� de son parti dans laquelle s�journe Mme Bhutto n&#039;�tait pas visible au-del� du p�rim�tre de s�curit�. | AFP/Arif Ali' title='Des milliers de policiers anti-�meutes bloquaient mardi 13 novembre toutes les routes menant � un quartier de Lahore, o� Mme Bhutto s�journe actuellement. Les policiers ont pris position derri�re les v�hicules et une rang�e de barri�res en m�tal coiff�es de fil barbel�. La maison d&#039;un d�put� de son parti dans laquelle s�journe Mme Bhutto n&#039;�tait pas visible au-del� du p�rim�tre de s�curit�. | AFP/Arif Ali' style="float:left; margin-right:5px;margin-bottom:3px;" vspace=4 hspace=1><div class=lien>La r�sidence de Mme Bhutto encercl�e par la police</div></a></div><div id="voir_content_5" style="display:none;"><a href='/web/portfolio/0,12-0@2-3246,31-973772,0.html' ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/02/h_12_ill_973776_cambodge.jpg width=155 height=103 border=0 alt=' | Mark Remissa/Photoquai' title=' | Mark Remissa/Photoquai' style="float:left; margin-right:5px;margin-bottom:3px;" vspace=4 hspace=1><div class=lien>Photoquai, premi�re biennale des images du monde � Paris</div></a></div></div></td></tr></table></div></div>
1101
1101
  <script language="JavaScript">
1102
1102
  <!--
1103
1103
  gl_voir_f = new Array(0, 0, 0, 0, 0, 0);
@@ -1167,77 +1167,77 @@ else
1167
1167
  </script>
1168
1168
  <!-- /gab-pv-sequence_une_voir.php-->
1169
1169
 
1170
- <!-- gab-pv-appel_sequence.php -->
1171
-
1170
+ <!-- gab-pv-appel_sequence.php -->
1171
+
1172
1172
  <div class="pg-dte">
1173
1173
  <div class="header-bg"><a href="/web/sequence/0,2-823448,1-0,0.html"><div class="header-arrow"><div class="header-txt">POLITIQUE</div></div></a></div><div class="box-no-pad" style="text-align:center;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font: 11px/15px verdana, sans-serif; color: #222222;">
1174
1174
  <img src="http://medias.lemonde.fr/medias/image_article/drapeau.gif" alt="Politique" title="Politique" style="float: left; margin-right: 5px;" border="0" height="58" width="87"></a>
1175
1175
  <a href="http://www.lemonde.fr/web/sequence/0,2-823448,1-0,0.html"><font class="type">TOUTE L'ACTUALIT&Eacute; POLITIQUE</font></a><br>
1176
- <a href="http://www.lemonde.fr/web/sequence/0,2-823448,1-0,0.html">Suivez l'actualit� politique au quotidien</a><br>
1177
- L'info en continu, portraits, chats, vid�os, suivi complet du Web.<br>
1176
+ <a href="http://www.lemonde.fr/web/sequence/0,2-823448,1-0,0.html">Suivez l'actualit� politique au quotidien</a><br>
1177
+ L'info en continu, portraits, chats, vid�os, suivi complet du Web.<br>
1178
1178
  <span class="type-gr">Fil RSS</span><a href="http://www.lemonde.fr/rss/fil/0,57-0,64-823353,0.xml"> Recevez l'actu politique en continu</a><br>
1179
- <div style="clear:both;"></div>
1179
+ <div style="clear:both;"></div>
1180
1180
  </div> </div><div class="box">
1181
1181
  <table cellpadding=0 cellspacing=0 border=0>
1182
1182
  <tr valign=top>
1183
-
1183
+
1184
1184
  <td width=91>
1185
- <a href="/web/article/0,1-0@2-823448,36-977722,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_1_ill_977917_flosse.jpg width=87 height=58 border=0 alt='Le secr�taire d&#039;Etat charg� de l&#039;Outre-Mer, Christian Estrosi, s&#039;entretient avec le s�nateur UMP Gaston Flosse, le 31 Octobre 2007 � Papeete, lors d&#039;une visite officielle dans la r�gion. | AFP/GREGORY BOISSY' title='Le secr�taire d&#039;Etat charg� de l&#039;Outre-Mer, Christian Estrosi, s&#039;entretient avec le s�nateur UMP Gaston Flosse, le 31 Octobre 2007 � Papeete, lors d&#039;une visite officielle dans la r�gion. | AFP/GREGORY BOISSY' ></a>
1185
+ <a href="/web/article/0,1-0@2-823448,36-977722,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/13/h_1_ill_977917_flosse.jpg width=87 height=58 border=0 alt='Le secr�taire d&#039;Etat charg� de l&#039;Outre-Mer, Christian Estrosi, s&#039;entretient avec le s�nateur UMP Gaston Flosse, le 31 Octobre 2007 � Papeete, lors d&#039;une visite officielle dans la r�gion. | AFP/GREGORY BOISSY' title='Le secr�taire d&#039;Etat charg� de l&#039;Outre-Mer, Christian Estrosi, s&#039;entretient avec le s�nateur UMP Gaston Flosse, le 31 Octobre 2007 � Papeete, lors d&#039;une visite officielle dans la r�gion. | AFP/GREGORY BOISSY' ></a>
1186
1186
  </td>
1187
1187
  <td>
1188
1188
  <div class=type-gr>Les faits</div>
1189
- <a href="/web/article/0,1-0@2-823448,36-977722,0.html" >Divorce entre M. Flosse et le gouvernement sur la r�forme de la Polyn�sie</a><br>
1189
+ <a href="/web/article/0,1-0@2-823448,36-977722,0.html" >Divorce entre M. Flosse et le gouvernement sur la r�forme de la Polyn�sie</a><br>
1190
1190
  </td>
1191
1191
  </tr>
1192
1192
  <tr>
1193
1193
  <td colspan=2>
1194
-
1195
- <div class=lien><span class=type-gr>Pratique</span> <a href="/web/article/0,1-0@2-823448,36-977710,0.html" >Les lignes de TGV et le m�tro parisien seront tr�s perturb�s</a></div>
1196
-
1197
- <div class=lien><span class=type-gr>Radiozapping </span> <a href="/web/panorama/0,11-0@2-3236,32-977215,0.html" >"La gr�ve, c'est aussi la f�te !" </a></div>
1198
-
1194
+
1195
+ <div class=lien><span class=type-gr>Pratique</span> <a href="/web/article/0,1-0@2-823448,36-977710,0.html" >Les lignes de TGV et le m�tro parisien seront tr�s perturb�s</a></div>
1196
+
1197
+ <div class=lien><span class=type-gr>Radiozapping </span> <a href="/web/panorama/0,11-0@2-3236,32-977215,0.html" >"La gr�ve, c'est aussi la f�te !" </a></div>
1198
+
1199
1199
  </td>
1200
1200
  </tr>
1201
1201
  </table>
1202
- </div> <div class="box">
1202
+ </div> <div class="box">
1203
1203
  <table border="0" cellpadding="0" cellspacing="0">
1204
1204
  <tbody>
1205
1205
  <tr valign="top">
1206
-
1206
+
1207
1207
  <td width="91">
1208
1208
  <a href="http://www.lemonde.fr/web/articleinteractif/0,41-0@2-823448,49-974593,0.html"><img src="http://medias.lemonde.fr/mmpub/edt/ill/2007/10/18/h_1_ill_968199_ratp_242853.jpg" alt="Pratique" title="Pratique" border="0" height="58" width="87"></a>
1209
1209
  </td>
1210
-
1210
+
1211
1211
  <td>
1212
- <div class="type-gr">Les cl�s</div>
1213
- <a href="http://www.lemonde.fr/web/articleinteractif/0,41-0@2-823448,49-974593,0.html">Les mouvements de gr�ve pr�vus en novembre</a><br>
1212
+ <div class="type-gr">Les cl�s</div>
1213
+ <a href="http://www.lemonde.fr/web/articleinteractif/0,41-0@2-823448,49-974593,0.html">Les mouvements de gr�ve pr�vus en novembre</a><br>
1214
1214
  </td>
1215
1215
  </tr>
1216
1216
  </tbody>
1217
1217
  </table>
1218
- </div>
1218
+ </div>
1219
1219
  </div><!-- /gab-pv-appel_sequence.php-->
1220
1220
 
1221
1221
 
1222
1222
 
1223
- <!-- gab-pv-appel_sequence.php -->
1224
-
1223
+ <!-- gab-pv-appel_sequence.php -->
1224
+
1225
1225
  <div class="pg-dte">
1226
1226
  <div class="header-bg"><a href="/web/sequence/0,2-3504,1-0,0.html"><div class="header-arrow"><div class="header-txt">TALENTS.FR</div></div></a></div><div class="box">Les offres d'emploi, les informations et les chiffres. </div> <div class=box>
1227
- <div class=lien><a href="http://www.talents.fr/web/article/0,1-0@2-3504,36-977169@51-821368,0.html" target="_blank">Emploi des handicap�s : la fonction publique contrainte de revoir sa copie</div>
1228
- <div class=lien><a href="http://www.talents.fr/web/article/0,1-0@2-3504,36-977172@51-821368,0.html" target="_blank">La pr�vention des risques psychosociaux se d�veloppe</a></div>
1227
+ <div class=lien><a href="http://www.talents.fr/web/article/0,1-0@2-3504,36-977169@51-821368,0.html" target="_blank">Emploi des handicap�s : la fonction publique contrainte de revoir sa copie</div>
1228
+ <div class=lien><a href="http://www.talents.fr/web/article/0,1-0@2-3504,36-977172@51-821368,0.html" target="_blank">La pr�vention des risques psychosociaux se d�veloppe</a></div>
1229
1229
  </div>
1230
- <a href="http://www.talents.fr/web/articleinteractif/0,41-0@2-3506,49-938867@45-3998@51-938868,0.html" onclick="xt_clic('N','testetvous')" target=_blank><img src=http://medias.lemonde.fr/mmpub/img/com/appel-testetvous-326x64.gif border=0></a>
1230
+ <a href="http://www.talents.fr/web/articleinteractif/0,41-0@2-3506,49-938867@45-3998@51-938868,0.html" onclick="xt_clic('N','testetvous')" target=_blank><img src=http://medias.lemonde.fr/mmpub/img/com/appel-testetvous-326x64.gif border=0></a>
1231
1231
  </div><!-- /gab-pv-appel_sequence.php-->
1232
1232
 
1233
1233
 
1234
- <!-- gab-pv-sequence_une_focus.php -->
1235
- <div class="pg-dte"> <div class="header-bg"><div class="header-txt">FOCUS</div></div> <table class="focus" cellspacing="0" cellpadding="0" width="326"> <tr><td width="50%" class="foo"><a href="/web/chat/0,46-0@2-3234,55-975818,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2005/06/22/h_1_ill_665026_ent_reserves_050622_reuters.jpg width=87 height=58 border=0 alt='Le baril de p�trole se rapproche du seuil de 100 dollars. | Atef Hassan/Reuters' title='Le baril de p�trole se rapproche du seuil de 100 dollars. | Atef Hassan/Reuters' ></a><br><span class="type-gr">Chat</span><br><a href="/web/chat/0,46-0@2-3234,55-975818,0.html" >Jean-Fran�ois Gruson : "L'impact de la hausse actuelle du p�trole est moins fort que lors des chocs de 1973 ou 1979"</a></td><td width="50%" class="bar"><a href="/web/article/0,1-0@2-3224,36-977303,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/12/h_1_ill_977138_bistouri.jpg width=87 height=58 border=0 alt='&quot;Je voudrais tenter de r�tablir la v�rit� du m�tier de chirurgien&quot;. | GAMMA/CARSON GANCI' title='&quot;Je voudrais tenter de r�tablir la v�rit� du m�tier de chirurgien&quot;. | GAMMA/CARSON GANCI' ></a><br><span class="type-gr">T�moignage</span><br><a href="/web/article/0,1-0@2-3224,36-977303,0.html" >Moi, Laurent S., chirurgien de l'h�pital public</a></td></tr><tr><td width="50%" class="bar"><a href="/web/article/0,1-0@2-3216,36-977304,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2006/02/16/h_1_ill_742198_alang.jpg width=87 height=58 border=0 alt='Des ouvriers du chantier d&#039;Alang, en Inde, le 21 janvier 2006. | AFP/EMMANUEL DUNAND' title='Des ouvriers du chantier d&#039;Alang, en Inde, le 21 janvier 2006. | AFP/EMMANUEL DUNAND' ></a><br><span class="type-gr">Reportage</span><br><a href="/web/article/0,1-0@2-3216,36-977304,0.html" >Inde : les chantiers interdits d'Alang</a></td><td width="50%" class="foo"><a href="/web/article/0,1-0@2-3246,36-977307,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/12/h_1_ill_977139_johnny-hallyday.jpg width=87 height=58 border=0 alt='Johnny Hallyday � Paris, le 15 octobre 2007. | GAMMA/PIERRE HOUNSFIELD/EYEDEA PRESSE' title='Johnny Hallyday � Paris, le 15 octobre 2007. | GAMMA/PIERRE HOUNSFIELD/EYEDEA PRESSE' ></a><br><span class="type-gr">Les faits</span><br><a href="/web/article/0,1-0@2-3246,36-977307,0.html" >Johnny Hallyday sort son "album de blues", devenu un enjeu inattendu pour sa carri�re</a></td></tr><tr><td width="50%" class="foo"><a href="/web/chat/0,46-0@2-3224,55-966503,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/10/15/h_1_ill_967310_avocats.jpg width=87 height=58 border=0 alt='Des avocats manifestent le 12 octobre 2007 devant le palais de justice de Lille lors de la venue du garde des sceaux, Rachida Dati, et du premier ministre, Fran�ois Fillon. | AFP/PHILIPPE HUGUEN' title='Des avocats manifestent le 12 octobre 2007 devant le palais de justice de Lille lors de la venue du garde des sceaux, Rachida Dati, et du premier ministre, Fran�ois Fillon. | AFP/PHILIPPE HUGUEN' ></a><br><span class="type-gr">Chat</span><br><a href="/web/chat/0,46-0@2-3224,55-966503,0.html" >Le r�forme de la carte judiciaire "risque d'�loigner le citoyen des tribunaux"</a></td><td width="50%" class="bar"><a href="/web/article/0,1-0@2-3246,36-977312,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/12/v_5_ill_977140_aff-animal.jpg width=87 height=111 border=0 alt='Affiche de l&#039;exposition &quot;Animal&quot; au Mus�e Dapper � Paris, jusqu&#039;au 30 mars 2008. | D.R.' title='Affiche de l&#039;exposition &quot;Animal&quot; au Mus�e Dapper � Paris, jusqu&#039;au 30 mars 2008. | D.R.' ></a><br><span class="type-gr">Critique</span><br><a href="/web/article/0,1-0@2-3246,36-977312,0.html" >Exposition : l'animal en Afrique, puissance surnaturelle</a></td></tr></table></div><!-- /gab-pv-sequence_une_focus.php-->
1236
- <!-- gab-pv-sequence_une_pause.php -->
1237
- <div class="pg-dte"> <div class="header-bg"><div class="header-txt">LA PAUSE</div></div> <table class="focus" cellspacing="0" cellpadding="0" width="326"> <tr> <td width="50%" class="pause"><a href="/web/panorama/0,11-0@2-3236,32-977215,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/12/h_12_radiozapping155.jpg width=153 height=103 border=0 alt='Le Radiozapping, chaque jour � midi, tout ce qu&#039;il ne fallait pas rater des matinales radio. | Le Monde.fr' title='Le Radiozapping, chaque jour � midi, tout ce qu&#039;il ne fallait pas rater des matinales radio. | Le Monde.fr' ></a> </td> <td width="50%" class="pause"><a href="/web/vi/0,47-0@2-3546,54-929092,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/06/29/h_12_blog-inter-155.jpg width=155 height=103 border=0 alt='Une carte interactive de blogs d&#039;abonn�s du Monde.fr aux quatre coins du monde. | DR' title='Une carte interactive de blogs d&#039;abonn�s du Monde.fr aux quatre coins du monde. | DR' ></a> </td> </tr> </table></div><!-- /gab-pv-sequence_une_pause.php--><!-- gab-pv-sequence_une_service.php -->
1234
+ <!-- gab-pv-sequence_une_focus.php -->
1235
+ <div class="pg-dte"> <div class="header-bg"><div class="header-txt">FOCUS</div></div> <table class="focus" cellspacing="0" cellpadding="0" width="326"> <tr><td width="50%" class="foo"><a href="/web/chat/0,46-0@2-3234,55-975818,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2005/06/22/h_1_ill_665026_ent_reserves_050622_reuters.jpg width=87 height=58 border=0 alt='Le baril de p�trole se rapproche du seuil de 100 dollars. | Atef Hassan/Reuters' title='Le baril de p�trole se rapproche du seuil de 100 dollars. | Atef Hassan/Reuters' ></a><br><span class="type-gr">Chat</span><br><a href="/web/chat/0,46-0@2-3234,55-975818,0.html" >Jean-Fran�ois Gruson : "L'impact de la hausse actuelle du p�trole est moins fort que lors des chocs de 1973 ou 1979"</a></td><td width="50%" class="bar"><a href="/web/article/0,1-0@2-3224,36-977303,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/12/h_1_ill_977138_bistouri.jpg width=87 height=58 border=0 alt='&quot;Je voudrais tenter de r�tablir la v�rit� du m�tier de chirurgien&quot;. | GAMMA/CARSON GANCI' title='&quot;Je voudrais tenter de r�tablir la v�rit� du m�tier de chirurgien&quot;. | GAMMA/CARSON GANCI' ></a><br><span class="type-gr">T�moignage</span><br><a href="/web/article/0,1-0@2-3224,36-977303,0.html" >Moi, Laurent S., chirurgien de l'h�pital public</a></td></tr><tr><td width="50%" class="bar"><a href="/web/article/0,1-0@2-3216,36-977304,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2006/02/16/h_1_ill_742198_alang.jpg width=87 height=58 border=0 alt='Des ouvriers du chantier d&#039;Alang, en Inde, le 21 janvier 2006. | AFP/EMMANUEL DUNAND' title='Des ouvriers du chantier d&#039;Alang, en Inde, le 21 janvier 2006. | AFP/EMMANUEL DUNAND' ></a><br><span class="type-gr">Reportage</span><br><a href="/web/article/0,1-0@2-3216,36-977304,0.html" >Inde : les chantiers interdits d'Alang</a></td><td width="50%" class="foo"><a href="/web/article/0,1-0@2-3246,36-977307,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/12/h_1_ill_977139_johnny-hallyday.jpg width=87 height=58 border=0 alt='Johnny Hallyday � Paris, le 15 octobre 2007. | GAMMA/PIERRE HOUNSFIELD/EYEDEA PRESSE' title='Johnny Hallyday � Paris, le 15 octobre 2007. | GAMMA/PIERRE HOUNSFIELD/EYEDEA PRESSE' ></a><br><span class="type-gr">Les faits</span><br><a href="/web/article/0,1-0@2-3246,36-977307,0.html" >Johnny Hallyday sort son "album de blues", devenu un enjeu inattendu pour sa carri�re</a></td></tr><tr><td width="50%" class="foo"><a href="/web/chat/0,46-0@2-3224,55-966503,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/10/15/h_1_ill_967310_avocats.jpg width=87 height=58 border=0 alt='Des avocats manifestent le 12 octobre 2007 devant le palais de justice de Lille lors de la venue du garde des sceaux, Rachida Dati, et du premier ministre, Fran�ois Fillon. | AFP/PHILIPPE HUGUEN' title='Des avocats manifestent le 12 octobre 2007 devant le palais de justice de Lille lors de la venue du garde des sceaux, Rachida Dati, et du premier ministre, Fran�ois Fillon. | AFP/PHILIPPE HUGUEN' ></a><br><span class="type-gr">Chat</span><br><a href="/web/chat/0,46-0@2-3224,55-966503,0.html" >Le r�forme de la carte judiciaire "risque d'�loigner le citoyen des tribunaux"</a></td><td width="50%" class="bar"><a href="/web/article/0,1-0@2-3246,36-977312,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/12/v_5_ill_977140_aff-animal.jpg width=87 height=111 border=0 alt='Affiche de l&#039;exposition &quot;Animal&quot; au Mus�e Dapper � Paris, jusqu&#039;au 30 mars 2008. | D.R.' title='Affiche de l&#039;exposition &quot;Animal&quot; au Mus�e Dapper � Paris, jusqu&#039;au 30 mars 2008. | D.R.' ></a><br><span class="type-gr">Critique</span><br><a href="/web/article/0,1-0@2-3246,36-977312,0.html" >Exposition : l'animal en Afrique, puissance surnaturelle</a></td></tr></table></div><!-- /gab-pv-sequence_une_focus.php-->
1236
+ <!-- gab-pv-sequence_une_pause.php -->
1237
+ <div class="pg-dte"> <div class="header-bg"><div class="header-txt">LA PAUSE</div></div> <table class="focus" cellspacing="0" cellpadding="0" width="326"> <tr> <td width="50%" class="pause"><a href="/web/panorama/0,11-0@2-3236,32-977215,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/11/12/h_12_radiozapping155.jpg width=153 height=103 border=0 alt='Le Radiozapping, chaque jour � midi, tout ce qu&#039;il ne fallait pas rater des matinales radio. | Le Monde.fr' title='Le Radiozapping, chaque jour � midi, tout ce qu&#039;il ne fallait pas rater des matinales radio. | Le Monde.fr' ></a> </td> <td width="50%" class="pause"><a href="/web/vi/0,47-0@2-3546,54-929092,0.html" ><img src=http://medias.lemonde.fr/mmpub/edt/ill/2007/06/29/h_12_blog-inter-155.jpg width=155 height=103 border=0 alt='Une carte interactive de blogs d&#039;abonn�s du Monde.fr aux quatre coins du monde. | DR' title='Une carte interactive de blogs d&#039;abonn�s du Monde.fr aux quatre coins du monde. | DR' ></a> </td> </tr> </table></div><!-- /gab-pv-sequence_une_pause.php--><!-- gab-pv-sequence_une_service.php -->
1238
1238
  <div class="pg-dte"><div class="header-bg"><div class="header-txt">SERVICES</div></div><div class="box"><table border=0 cellspacing="0" cellpadding="0"><tr>
1239
- <td><div class="no-underline"><a href="http://www.lemonde.fr/web/meteo/0,31-0,42-355,0.html" onclick="xt_clic('N','Services: M�teo')"><div class="bt-big-off" id="ser_bt_0" onmouseover="ser_on(0)" onmouseout="ser_out(0)">M�t�o</div></a></div></td>
1240
- <td><div class="no-underline"><a href="/web/eco/accueil/0,58-0@2-3234,1-0,0.html?NAV1=MAR&NAV2=ACCUEIL" onclick="xt_clic('N','Services: March�s')"><div class="bt-big-off" id="ser_bt_1" onmouseover="ser_on(1)" onmouseout="ser_out(1)">March&eacute;s</div></a></div></td>
1239
+ <td><div class="no-underline"><a href="http://www.lemonde.fr/web/meteo/0,31-0,42-355,0.html" onclick="xt_clic('N','Services: M�teo')"><div class="bt-big-off" id="ser_bt_0" onmouseover="ser_on(0)" onmouseout="ser_out(0)">M�t�o</div></a></div></td>
1240
+ <td><div class="no-underline"><a href="/web/eco/accueil/0,58-0@2-3234,1-0,0.html?NAV1=MAR&NAV2=ACCUEIL" onclick="xt_clic('N','Services: March�s')"><div class="bt-big-off" id="ser_bt_1" onmouseover="ser_on(1)" onmouseout="ser_out(1)">March&eacute;s</div></a></div></td>
1241
1241
  <td><div class="no-underline"><a href="/web/rss/0,48-0,1-0,0.html" onclick="xt_clic('N','Services: RSS')"><div class="bt-big-off" id="ser_bt_2" onmouseover="ser_on(2)" onmouseout="ser_out(2)">RSS & Podcast</div></a></div></td>
1242
1242
  </tr><tr>
1243
1243
  <td><div class="no-underline"><a href="/web/inscription/formulaire/1,27-0,1-0,0.html" onclick="xt_clic('N','Services: Newsletters')"><div class="bt-big-off" id="ser_bt_3" onmouseover="ser_on(3)" onmouseout="ser_out(3)">Newsletters</div></a></div></td>
@@ -1247,7 +1247,7 @@ L'info en continu, portraits, chats, vid
1247
1247
  <tr>
1248
1248
  <td colspan="3"><div class="content">
1249
1249
  <div id="ser_content_0" class="service">
1250
- <a href="http://www.lemonde.fr/web/meteo/0,31-0,42-355,0.html"><img src="http://medias.lemonde.fr/mmpub/img/icn/met/gd/18.gif" border="0" alt="Pluie fine. Partiellement ensoleill�. Vif." title="Pluie fine. Partiellement ensoleill�. Vif." style="float:left; margin-right:5px;margin-bottom:3px;" hspace=1></a> <div class="desc"> <a href="http://www.lemonde.fr/web/meteo/0,31-0,42-355,0.html">Paris, France</a><br/> <b>7&nbsp;�C</b><br/>Pluie fine. Partiellement ensoleill�. Vif. </div></div>
1250
+ <a href="http://www.lemonde.fr/web/meteo/0,31-0,42-355,0.html"><img src="http://medias.lemonde.fr/mmpub/img/icn/met/gd/18.gif" border="0" alt="Pluie fine. Partiellement ensoleill�. Vif." title="Pluie fine. Partiellement ensoleill�. Vif." style="float:left; margin-right:5px;margin-bottom:3px;" hspace=1></a> <div class="desc"> <a href="http://www.lemonde.fr/web/meteo/0,31-0,42-355,0.html">Paris, France</a><br/> <b>7&nbsp;�C</b><br/>Pluie fine. Partiellement ensoleill�. Vif. </div></div>
1251
1251
  <link type="text/css" rel="stylesheet" href="http://medias.lemonde.fr/mmpub/css/finance_graphcoldroite.css">
1252
1252
  <script language="javascript">
1253
1253
  <!--
@@ -1351,7 +1351,7 @@ function coldroit(id_notation) {cible = document.getElementById(id_notation);
1351
1351
  <div id="ser_content_2" class="service">
1352
1352
  <a href="/web/rss/0,48-0,1-0,0.html" >
1353
1353
  <img src="http://medias.lemonde.fr/mmpub/img/icn/rss-hq.gif" width=70 border=0 alt="flux rss" title="flux rss" style="float:left; margin-right:5px;margin-bottom:3px;" vspace=4 hspace=1>
1354
- <div class=lien>Fils d'information du Monde.fr et vid�os � podcaster.</div>
1354
+ <div class=lien>Fils d'information du Monde.fr et vid�os � podcaster.</div>
1355
1355
  </a>
1356
1356
  </div>
1357
1357
  <div id="ser_content_3" class="service"><div class=desc> Recevez la newsletter gratuite <a href="javascript:window.open('http://www.lemonde.fr/web/newsletter_exemple/0,30-0,62-0@60-5@45-2,0.html', 'newsletter_exemple', 'status=yes,resizable=yes,scrollbars=yes,width=660,height=500'); void(0); "> "Les titres du jour" :</a></div><form name="coldte_news" method="POST" action="/web/inscription_newsletter/1,27-0,1-0,0.html"><input type="hidden" name="nb_elem" value="1"/><input type="hidden" name="liste_newsletters" value=""/><input type="hidden" name="newsletter_1" value="5" /><input type="hidden" name="format_nl" value="2" checked valign="top"/>
@@ -1359,12 +1359,12 @@ function coldroit(id_notation) {cible = document.getElementById(id_notation);
1359
1359
  <div class=lien>
1360
1360
  Votre adresse e-mail <input type="text" name="email" size=24 value=""> <input type="image" src="http://medias.lemonde.fr/mmpub/img/bt/go.gif" onclick="submit();" width="14" height="14" border="0" align="absmiddle"/>
1361
1361
  </div>
1362
- </div><a href="/web/inscription_newsletter/1,27-0,1-0,0.html">Recevez nos newsletters th�matiques, abonnez-vous.</a></form></div>
1362
+ </div><a href="/web/inscription_newsletter/1,27-0,1-0,0.html">Recevez nos newsletters th�matiques, abonnez-vous.</a></form></div>
1363
1363
 
1364
1364
  <div id="ser_content_4" class="service">
1365
1365
  <a href="/web/articleinteractif/0,41-0@2-3388,49-888182,0.html">
1366
1366
  <img src="http://medias.lemonde.fr/mmpub/img/icn/servicepda.gif" alt="service pda" title="service pda" width=70 border=0 style="float:left; margin-right:5px;margin-bottom:3px;" vspace=4 hspace=1>
1367
- <div class=lien>Emportez et consultez Le Monde.fr o� que vous soyez !</div>
1367
+ <div class=lien>Emportez et consultez Le Monde.fr o� que vous soyez !</div>
1368
1368
  </a>
1369
1369
  </div>
1370
1370
  <script language="JavaScript">
@@ -1434,7 +1434,7 @@ function coldroit(id_notation) {cible = document.getElementById(id_notation);
1434
1434
  <div id="ser_content_5" class="service"><div id="sytadin" class="desc" > <div id="coldte_sytadin" style="position:relative;overflow:hidden;width:140;height:80;float:left;cursor:move;">
1435
1435
  <div style="position:absolute;top:-115px;left:-150px;width:437px;height:370px; background-image: url('http://www.sytadin.equipement.gouv.fr/tempsreel/general.gif');background-position:left; background-repeat:no-repeat;" id="coldte_sytadin_sub" useMap="#mapgene"/></div>
1436
1436
  </div>
1437
- <div style="float:left; width:150px; margin:0px; padding:0px; padding-left:4px; "><div class="lien" style="margin:0px; padding:0px;"><a href="/web/traficidf/0,53-0,1-0,0.html">Circulation en temps r�el en Ile-de-France</a></div>
1437
+ <div style="float:left; width:150px; margin:0px; padding:0px; padding-left:4px; "><div class="lien" style="margin:0px; padding:0px;"><a href="/web/traficidf/0,53-0,1-0,0.html">Circulation en temps r�el en Ile-de-France</a></div>
1438
1438
  <div class="sytadin-box" style="background-color:#00FF00;">&nbsp;</div>Fluide<br/>
1439
1439
  <div class="sytadin-box" style="background-color:#FF0000;">&nbsp;</div>Embouteillages<br/>
1440
1440
  <div class="sytadin-box" style="background-color:#CC00FF;">&nbsp;</div>Fermeture<br/>
@@ -1473,7 +1473,7 @@ function coldroit(id_notation) {cible = document.getElementById(id_notation);
1473
1473
 
1474
1474
  function ser(num)
1475
1475
  {
1476
- // si tous les onglets sauf March�s, on plie les indices en plus
1476
+ // si tous les onglets sauf March�s, on plie les indices en plus
1477
1477
  if (num != 1)
1478
1478
  {
1479
1479
  plier_indices_marches("table-indices");
@@ -1522,19 +1522,19 @@ function coldroit(id_notation) {cible = document.getElementById(id_notation);
1522
1522
  <!-- sondage: appel du composant: /web/sondage/cmp_col_droite/0,25-0@2-3208,15-977670@45-0,0.html -->
1523
1523
  <!-- Rosae:: mardi 13 novembre 2007 15:31:07.22123 0.060 terre -->
1524
1524
 
1525
- <div class="header-bg"><div class="header-txt">VOTRE AVIS</div></div><div class=box>En ce qui concerne les revendications des manifestants et des gr�vistes sur les r�gimes sp�ciaux de retraite, souhaitez-vous que le gouvernement�<br><br>
1525
+ <div class="header-bg"><div class="header-txt">VOTRE AVIS</div></div><div class=box>En ce qui concerne les revendications des manifestants et des gr�vistes sur les r�gimes sp�ciaux de retraite, souhaitez-vous que le gouvernement�<br><br>
1526
1526
 
1527
1527
  <script language="javascript">
1528
- function getCookieVal (offset)
1528
+ function getCookieVal (offset)
1529
1529
  {
1530
1530
  var endstr = document.cookie.indexOf (";", offset);
1531
1531
  if (endstr == -1)
1532
1532
  endstr = document.cookie.length;
1533
- return unescape(document.cookie.substring(offset, endstr));
1533
+ return unescape(document.cookie.substring(offset, endstr));
1534
1534
  }
1535
- function GetCookie (name)
1535
+ function GetCookie (name)
1536
1536
  {
1537
- var arg = name + "=";
1537
+ var arg = name + "=";
1538
1538
  var alen = arg.length;
1539
1539
  var clen = document.cookie.length;
1540
1540
  var i = 0;
@@ -1547,20 +1547,20 @@ function GetCookie (name)
1547
1547
  }
1548
1548
  return null;
1549
1549
  }
1550
- function FixCookieDate (date)
1550
+ function FixCookieDate (date)
1551
1551
  {
1552
1552
  var base = new Date(0);
1553
1553
  var skew = base.getTime(); // dawn of (Unix) time - should be 0
1554
1554
  if (skew > 0) // Except on the Mac - ahead of its time
1555
- date.setTime (date.getTime() - skew);
1556
- }
1557
- function SetCookie (name,value,expires,path,domain,secure)
1555
+ date.setTime (date.getTime() - skew);
1556
+ }
1557
+ function SetCookie (name,value,expires,path,domain,secure)
1558
1558
  {
1559
1559
  document.cookie = name + "=" + escape (value) +
1560
1560
  ((expires) ? "; expires=" + expires.toGMTString() : "") +
1561
1561
  ((path) ? "; path=" + path : "") +
1562
1562
  ((domain) ? "; domain=" + domain : "") +
1563
- ((secure) ? "; secure" : "");
1563
+ ((secure) ? "; secure" : "");
1564
1564
  }
1565
1565
  var nom_cookie="sondage977670";
1566
1566
  // Si on n'a pas de cookie, on n'a pas vote
@@ -1568,13 +1568,13 @@ if (!GetCookie(nom_cookie)) {
1568
1568
  var expdate = new Date ();
1569
1569
  var cookie_domaine = ".lemonde.fr";
1570
1570
  FixCookieDate (expdate); // Correct for Mac date bug - call only once for given Date object!
1571
- expdate.setTime (expdate.getTime() + 604800000); // On fixe la dur�e de vie du cookie pour un sondage donn� � une semaine
1571
+ expdate.setTime (expdate.getTime() + 604800000); // On fixe la dur�e de vie du cookie pour un sondage donn� � une semaine
1572
1572
  var nom_cookie="sondage977670";
1573
1573
  var path_cookie="/";
1574
1574
 
1575
- document.write('<form name=form_sond977670 method=post action=http://www-org.lemonde.fr/web/sondage/insertion/1,25-0@2-3208,15-977670,0.html><input type=radio name=num_reponse value=5335>� en tienne compte et modifie ses projets <br><br><input type=radio name=num_reponse value=5336>� ou n&#039;en tienne pas compte et maintienne ses projet<br><br><input type=radio name=num_reponse value=5337>Sans opinion<br><br><div align=center><input type="submit" name="Exprimez-vous" value="Exprimez-vous" class=bouton onclick="javascript:SetCookie(nom_cookie, 1, expdate,path_cookie,cookie_domaine); document.form_sond977670.submit();"></div></form></div>');
1575
+ document.write('<form name=form_sond977670 method=post action=http://www-org.lemonde.fr/web/sondage/insertion/1,25-0@2-3208,15-977670,0.html><input type=radio name=num_reponse value=5335>� en tienne compte et modifie ses projets <br><br><input type=radio name=num_reponse value=5336>� ou n&#039;en tienne pas compte et maintienne ses projet<br><br><input type=radio name=num_reponse value=5337>Sans opinion<br><br><div align=center><input type="submit" name="Exprimez-vous" value="Exprimez-vous" class=bouton onclick="javascript:SetCookie(nom_cookie, 1, expdate,path_cookie,cookie_domaine); document.form_sond977670.submit();"></div></form></div>');
1576
1576
  } else {
1577
- document.write('� en tienne compte et modifie ses projets .<br><img src=http://medias.lemonde.fr/mmpub/img/bg/x_99.gif height=12 width=74.8>&nbsp;<b>37.4&nbsp;%</b><br><br>� ou n&#039;en tienne pas compte et maintienne ses projet.<br><img src=http://medias.lemonde.fr/mmpub/img/bg/x_99.gif height=12 width=118.2>&nbsp;<b>59.1&nbsp;%</b><br><br>Sans opinion.<br><img src=http://medias.lemonde.fr/mmpub/img/bg/x_99.gif height=12 width=7.2>&nbsp;<b>3.6&nbsp;%</b><br><br><div class=dt>Nombre de votants : 2321</div></div>');}
1577
+ document.write('� en tienne compte et modifie ses projets .<br><img src=http://medias.lemonde.fr/mmpub/img/bg/x_99.gif height=12 width=74.8>&nbsp;<b>37.4&nbsp;%</b><br><br>� ou n&#039;en tienne pas compte et maintienne ses projet.<br><img src=http://medias.lemonde.fr/mmpub/img/bg/x_99.gif height=12 width=118.2>&nbsp;<b>59.1&nbsp;%</b><br><br>Sans opinion.<br><img src=http://medias.lemonde.fr/mmpub/img/bg/x_99.gif height=12 width=7.2>&nbsp;<b>3.6&nbsp;%</b><br><br><div class=dt>Nombre de votants : 2321</div></div>');}
1578
1578
  ;
1579
1579
  </script>
1580
1580
 
@@ -1634,27 +1634,27 @@ else
1634
1634
  <td width="323" class="pnav" rowspan=2 >
1635
1635
  <img src="http://medias.lemonde.fr/mmpub/img/icn/journal.gif" width="75" height="59" border="0" align="right" alt="">
1636
1636
  <img src="http://medias.lemonde.fr/mmpub/img/lgo/lemonde.gif" border="0" vspace="2" alt=""><br>
1637
- <a href="http://eu.link.decdna.net/n/14763/31113/www.lemonde.fr/9a6886bd0025030000001fa400000000136ef32d0000000000000000000000000000000100/i/c?0&pq=%2fabojournal%2f%3fxtor%3dAL%2d32280017" onclick="xt_clic('N','Monde')" target=_top>&raquo; Abonnez-vous au <i>Monde</i> � -60%</a><br><a href="http://www.lemonde.fr/monabo/" onclick="xt_clic('N','Deja abonne au journal')" target=_top>&raquo; D�j� abonn� au journal</a><br><a href="http://www.lemonde.fr/kiosque" onclick="xt_clic('N','Le journal en kiosque')" target=_top>&raquo; Le journal en kiosque</a><br>
1638
- </td>
1637
+ <a href="http://eu.link.decdna.net/n/14763/31113/www.lemonde.fr/9a6886bd0025030000001fa400000000136ef32d0000000000000000000000000000000100/i/c?0&pq=%2fabojournal%2f%3fxtor%3dAL%2d32280017" onclick="xt_clic('N','Monde')" target=_top>&raquo; Abonnez-vous au <i>Monde</i> � -60%</a><br><a href="http://www.lemonde.fr/monabo/" onclick="xt_clic('N','Deja abonne au journal')" target=_top>&raquo; D�j� abonn� au journal</a><br><a href="http://www.lemonde.fr/kiosque" onclick="xt_clic('N','Le journal en kiosque')" target=_top>&raquo; Le journal en kiosque</a><br>
1638
+ </td>
1639
1639
  </tr>
1640
1640
  <tr class="pnav" valign=top>
1641
1641
  <td width="100">
1642
- <a href="http://www.lemonde.fr/web/sequence/0,2-3208,1-0,0.html" onclick="xt_clic('N','A la une')" target=_top>&raquo; A la une</a><br><a href="http://abonnes.lemonde.fr/web/desk/0,26-3424,1-0,0.html" onclick="xt_clic('N','Le Desk')" target=_top>&raquo; Le Desk</a><br><a href="http://www.lemonde.fr/web/sequence/0,2-3232,1-0,0.html" onclick="xt_clic('N','Opinions')" target=_top>&raquo; Opinions</a>
1642
+ <a href="http://www.lemonde.fr/web/sequence/0,2-3208,1-0,0.html" onclick="xt_clic('N','A la une')" target=_top>&raquo; A la une</a><br><a href="http://abonnes.lemonde.fr/web/desk/0,26-3424,1-0,0.html" onclick="xt_clic('N','Le Desk')" target=_top>&raquo; Le Desk</a><br><a href="http://www.lemonde.fr/web/sequence/0,2-3232,1-0,0.html" onclick="xt_clic('N','Opinions')" target=_top>&raquo; Opinions</a>
1643
1643
  </td>
1644
1644
  <td width="100">
1645
- <a href="http://www.lemonde.fr/web/recherche/1,13-0,1-0,0.html" onclick="xt_clic('N','Archives')" target=_top>&raquo; Archives</a><br><a href="http://forums.lemonde.fr" onclick="xt_clic('N','Forums')" target=_top>&raquo; Forums</a><br><a href="http://www.lemonde.fr/web/blogs/0,39-0,48-0,0.html" onclick="xt_clic('N','Blogs')" target=_top>&raquo; Blogs</a>
1645
+ <a href="http://www.lemonde.fr/web/recherche/1,13-0,1-0,0.html" onclick="xt_clic('N','Archives')" target=_top>&raquo; Archives</a><br><a href="http://forums.lemonde.fr" onclick="xt_clic('N','Forums')" target=_top>&raquo; Forums</a><br><a href="http://www.lemonde.fr/web/blogs/0,39-0,48-0,0.html" onclick="xt_clic('N','Blogs')" target=_top>&raquo; Blogs</a>
1646
1646
  </td>
1647
1647
  <td width="100">
1648
- <a href="http://www.lemonde.fr/web/sequence/0,2-3404,1-0,0.html" onclick="xt_clic('N','Examens')" target=_top>&raquo; Examens</a><br><a href="http://www.lemonde.fr/web/sequence/0,2-3246,1-0,0.html" onclick="xt_clic('N','Culture')" target=_top>&raquo; Culture</a><br><a href="http://www.lemonde.fr/web/sequence/0,2-3234,1-0,0.html" onclick="xt_clic('N','Economie')" target=_top>&raquo; Economie</a>
1648
+ <a href="http://www.lemonde.fr/web/sequence/0,2-3404,1-0,0.html" onclick="xt_clic('N','Examens')" target=_top>&raquo; Examens</a><br><a href="http://www.lemonde.fr/web/sequence/0,2-3246,1-0,0.html" onclick="xt_clic('N','Culture')" target=_top>&raquo; Culture</a><br><a href="http://www.lemonde.fr/web/sequence/0,2-3234,1-0,0.html" onclick="xt_clic('N','Economie')" target=_top>&raquo; Economie</a>
1649
1649
  </td>
1650
1650
  <td width="100">
1651
- <a href="http://www.lemonde.fr/web/meteo/0,31-0,42-0,0.html" onclick="xt_clic('N','Meteo')" target=_top>&raquo; M�t�o</a><br><a href="http://www.lemonde.fr/web/sequence/0,2-3382,1-0,0.html" onclick="xt_clic('N','Carnet')" target=_top>&raquo; Carnet</a><br><a href="http://lemonde.immostreet.com" onclick="xt_clic('N','Immobilier')" target=_top>&raquo; Immobilier</a>
1651
+ <a href="http://www.lemonde.fr/web/meteo/0,31-0,42-0,0.html" onclick="xt_clic('N','Meteo')" target=_top>&raquo; M�t�o</a><br><a href="http://www.lemonde.fr/web/sequence/0,2-3382,1-0,0.html" onclick="xt_clic('N','Carnet')" target=_top>&raquo; Carnet</a><br><a href="http://lemonde.immostreet.com" onclick="xt_clic('N','Immobilier')" target=_top>&raquo; Immobilier</a>
1652
1652
  </td>
1653
1653
  <td width="100">
1654
- <a href="http://www.talents.fr/" onclick="xt_clic('N','Emploi')" target=_top>&raquo; Emploi</a><br><a href="http://shop.lemonde.fr" onclick="xt_clic('N','Shopping')" target=_top>&raquo; Shopping</a><br><a href="http://nautisme.lemonde.fr" onclick="xt_clic('N','Nautisme')" target=_top>&raquo; Nautisme</a>
1654
+ <a href="http://www.talents.fr/" onclick="xt_clic('N','Emploi')" target=_top>&raquo; Emploi</a><br><a href="http://shop.lemonde.fr" onclick="xt_clic('N','Shopping')" target=_top>&raquo; Shopping</a><br><a href="http://nautisme.lemonde.fr" onclick="xt_clic('N','Nautisme')" target=_top>&raquo; Nautisme</a>
1655
1655
  </td>
1656
1656
  <td width="100">
1657
- <a href="http://www.lemonde.fr/web/sequence/0,2-3546,1-0,0.html" onclick="xt_clic('N','Voyages')" target=_top>&raquo; Voyages</a><br><a href="http://www.lemonde.fr/web/inscription_newsletter/1,27-0,1-0,0.html" onclick="xt_clic('N','Newsletters')" target=_top>&raquo; Newsletters</a><br><a href="http://www.lemonde.fr/web/rss/0,48-0,1-0,0.html" onclick="xt_clic('N','RSS')" target=_top>&raquo; RSS</a>
1657
+ <a href="http://www.lemonde.fr/web/sequence/0,2-3546,1-0,0.html" onclick="xt_clic('N','Voyages')" target=_top>&raquo; Voyages</a><br><a href="http://www.lemonde.fr/web/inscription_newsletter/1,27-0,1-0,0.html" onclick="xt_clic('N','Newsletters')" target=_top>&raquo; Newsletters</a><br><a href="http://www.lemonde.fr/web/rss/0,48-0,1-0,0.html" onclick="xt_clic('N','RSS')" target=_top>&raquo; RSS</a>
1658
1658
  </td>
1659
1659
  </tr>
1660
1660
  </table><!-- /gab-pv-navigation_basse.php -->
@@ -1693,7 +1693,7 @@ else
1693
1693
  <!-- gab-ssq-1_col_empil_fixe_sans_espace.php -->
1694
1694
 
1695
1695
  <!-- gab-pv-copyright.php -->
1696
- <div class="pd" ><a href="http://www.lemonde.fr/cgi-bin/ACHATS/acheter.cgi?offre=ZOP" target=_top><img src="http://medias.lemonde.fr/mmpub/img/bt/sabonner.gif" border=0 align=absmiddle></a><a href="http://www.lemonde.fr/demo/" target=_top><img src="http://medias.lemonde.fr/mmpub/img/bt/visiter.gif" border=0 align=absmiddle></a>&nbsp;<a href="http://www.lemonde.fr/web/article/0,1-0@2-3388,36-139039,0.html" target=_top>&copy; Le Monde.fr</a>�| <a href="http://www.ojd.com/fr/adhchif/adhe_list.php?mode=chif&cat=1784 " target=_top>Fr�quentation certifi�e par l'OJD</a>�| <a href="http://www.lemonde.fr/cgv" target=_top>CGV</a>�| <a href="http://www.lemonde.fr/web/article/0,1-0@2-3388,36-875325,0.html" target=_top>Mentions l�gales</a>�| <a href="http://www.lemonde.fr/web/sequence/0,2-3386,1-0,0.html" target=_top>Qui sommes-nous ?</a>�| <a href="http://www.lemonde.fr/web/sitemap/0,0-0,1-0,0.html" target=_top>Index</a>�| <a href="http://www.lemonde.fr/web/articleinteractif/0,41-0@2-3388,49-625731,0.html" target=_top>Aide</a>�</div><!-- /gab-pv-copyright.php -->
1696
+ <div class="pd" ><a href="http://www.lemonde.fr/cgi-bin/ACHATS/acheter.cgi?offre=ZOP" target=_top><img src="http://medias.lemonde.fr/mmpub/img/bt/sabonner.gif" border=0 align=absmiddle></a><a href="http://www.lemonde.fr/demo/" target=_top><img src="http://medias.lemonde.fr/mmpub/img/bt/visiter.gif" border=0 align=absmiddle></a>&nbsp;<a href="http://www.lemonde.fr/web/article/0,1-0@2-3388,36-139039,0.html" target=_top>&copy; Le Monde.fr</a>�| <a href="http://www.ojd.com/fr/adhchif/adhe_list.php?mode=chif&cat=1784 " target=_top>Fr�quentation certifi�e par l'OJD</a>�| <a href="http://www.lemonde.fr/cgv" target=_top>CGV</a>�| <a href="http://www.lemonde.fr/web/article/0,1-0@2-3388,36-875325,0.html" target=_top>Mentions l�gales</a>�| <a href="http://www.lemonde.fr/web/sequence/0,2-3386,1-0,0.html" target=_top>Qui sommes-nous ?</a>�| <a href="http://www.lemonde.fr/web/sitemap/0,0-0,1-0,0.html" target=_top>Index</a>�| <a href="http://www.lemonde.fr/web/articleinteractif/0,41-0@2-3388,49-625731,0.html" target=_top>Aide</a>�</div><!-- /gab-pv-copyright.php -->
1697
1697
 
1698
1698
 
1699
1699
  <!-- /info_sq_1_zone -->
@@ -1713,10 +1713,10 @@ var TAG_CHAPITRE = '';
1713
1713
  TAG_COMPTAGE="homepage/index";
1714
1714
  TAG_SITE="&s2=5";
1715
1715
  if (cookie_chap !=null && cookie_chap !="") {
1716
- if (cookie_chap !='ABONNE' && cookie_chap != 'QUOTIDIEN') {
1716
+ if (cookie_chap !='ABONNE' && cookie_chap != 'QUOTIDIEN') {
1717
1717
  TAG_CHAPITRE = cookie_chap +'::';
1718
1718
  TAG_SITE = '&s2=23';
1719
- }
1719
+ }
1720
1720
  }
1721
1721
  hsi = '<img width="1" height="1" src="http://logc2.xiti.com/hit.xiti?s=43260'+TAG_SITE;
1722
1722
  hsi += '&p='+TAG_CHAPITRE+TAG_COMPTAGE+'&hl=' + hsh.getHours() + 'x' + hsh.getMinutes() + 'x' + hsh.getSeconds();