document.write("<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"756\" bgcolor=\"#000000\">  <tr>    <td valign=\"top\" bgcolor=\"#6AC029\" width=\"100%\"><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"15\" border=\"0\" alt=\"\"></td>    <td valign=\"top\" class=\"date\"><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"10\" height=\"1\" border=\"0\" alt=\"\"></td>    <td valign=\"top\" class=\"date\" nowrap>");
	<!--	var months=new Array(13);	months[1]="janvier";	months[2]="février";	months[3]="mars";	months[4]="avril";	months[5]="mai";	months[6]="juin";	months[7]="juillet";	months[8]="août";	months[9]="septembre";	months[10]="octobre";	months[11]="novembre";	months[12]="décembre";		var today=new Date();		var lmonth=months[today.getMonth() + 1];	var date=today.getDate();	var daynum = today.getDay() + 1;		if(date==1) date = "1er";				if(daynum==1) day = "Dimanche";				if(daynum==2) day = "Lundi";	if(daynum==3) day = "Mardi";	if(daynum==4) day = "Mercredi";	if(daynum==5) day = "Jeudi";	if(daynum==6) day = "Vendredi";	if(daynum==7) day = "Samedi";		var todaysdate= (day + " " + date + " " + lmonth);		document.write(todaysdate);		/*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	WCH.js - Windowed Controls Hider v3.10	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	(c) Copyright 2003, Aleksandar Vacic, aleck@sezampro.yu, www.aplus.co.yu	## This work is licensed under the Creative Commons Attribution-ShareAlike License.	## To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/1.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	Credits: Mike Foster for x functions (cross-browser.com)	Credits: Tim Connor for short and sweet way of dealing with IE5.0 - dynamic creation of style rule (www.infosauce.com)	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -	Based on idea presented by Joe King. Works with IE5.0+/Win	IE 5.5+: place iFrame below the layer to hide windowed controls	IE 5.0 : hide/show all elements that have "WCHhider" class- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*/var WCH_Constructor = function() {	//	exit point for anything but IE5.0+/Win	if ( !(document.all && document.getElementById && !window.opera && navigator.userAgent.toLowerCase().indexOf("mac") == -1) ) {		this.Apply = function() {};		this.Discard = function() {};		return;	}	//	private properties	var _bIE55 = false;	var _bIE6 = false;	var _oRule = null;	var _bSetup = true;	var _oSelf = this;	//	public: hides windowed controls	this.Apply = function(vLayer, vContainer, bResize) {		if (_bSetup) _Setup();		if ( _bIE55 && (oIframe = _Hider(vLayer, vContainer, bResize)) ) {			oIframe.style.visibility = "visible";		} else if(_oRule != null) {			_oRule.style.visibility = "hidden";		}	};	//	public: shows windowed controls	this.Discard = function(vLayer, vContainer) {		if ( _bIE55 && (oIframe = _Hider(vLayer, vContainer, false)) ) {			oIframe.style.visibility = "hidden";		} else if(_oRule != null) {			_oRule.style.visibility = "visible";		}	};	//	private: returns iFrame reference for IE5.5+	function _Hider(vLayer, vContainer, bResize) {		var oLayer = _GetObj(vLayer);		var oContainer = ( (oTmp = _GetObj(vContainer)) ? oTmp : document.getElementsByTagName("body")[0] );		if (!oLayer || !oContainer) return;		//	is it there already?		var oIframe = document.getElementById("WCHhider" + oLayer.id);				//	if not, create it		if ( !oIframe ) {			//	IE 6 has this property, IE 5 not. IE 5.5(even SP2) crashes when filter is applied, hence the check			var sFilter = (_bIE6) ? "filter:progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);" : "";			//	get z-index of the object			var zIndex = oLayer.style.zIndex;			if ( zIndex == "" ) zIndex = oLayer.currentStyle.zIndex;			zIndex = parseInt(zIndex);			//	if no z-index, do nothing			if ( isNaN(zIndex) ) return null;			//	if z-index is below 2, do nothing (no room for Hider)			if (zIndex < 2) return null;			//	go one step below for Hider			zIndex--;			var sHiderID = "WCHhider" + oLayer.id;			oContainer.insertAdjacentHTML("afterBegin", '<iframe class="WCHiframe" src="javascript:false;" id="' + sHiderID + '" scroll="no" frameborder="0" style="position:absolute;visibility:hidden;' + sFilter + 'border:0;top:0;left;0;width:0;height:0;background-color:#ccc;z-index:' + zIndex + ';"></iframe>');			oIframe = document.getElementById(sHiderID);			//	then do calculation			_SetPos(oIframe, oLayer);		} else if (bResize) {			//	resize the iFrame if asked			_SetPos(oIframe, oLayer);		}		return oIframe;	};	//	private: set size and position of the Hider	function _SetPos(oIframe, oLayer) {		//	fetch and set size		oIframe.style.width = oLayer.offsetWidth + "px";		oIframe.style.height = oLayer.offsetHeight + "px";		//	move to specified position		oIframe.style.left = oLayer.offsetLeft + "px";		oIframe.style.top = oLayer.offsetTop + "px";	};	//	private: returns object reference	function _GetObj(vObj) {		var oObj = null;		switch( typeof(vObj) ) {			case "object":				oObj = vObj;				break;			case "string":				oObj = document.getElementById(vObj);				break;		}		return oObj;	};	//	private: setup properties on first call to Apply	function _Setup() {		_bIE55 = (typeof(document.body.contentEditable) != "undefined");		_bIE6 = (typeof(document.compatMode) != "undefined");		if (!_bIE55) {			if (document.styleSheets.length == 0)				document.createStyleSheet();			var oSheet = document.styleSheets[0];			oSheet.addRule(".WCHhider", "visibility:visible");			_oRule = oSheet.rules(oSheet.rules.length-1);		}		_bSetup = false;	};};var WCH = new WCH_Constructor();//-->document.write("    </td>    <td valign=\"top\" class=\"date\"><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"10\" height=\"1\" border=\"0\" alt=\"\"></td>    <td valign=\"top\"><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"19\" height=\"1\" border=\"0\" alt=\"\"></td>    <td valign=\"top\"><a href=\"http://www.france5.fr/\" onmousedown=\"return clk(this,'FRANCE5','accueil_menuh_accueil')\"><img src=\"http://arche.francetv.fr/800/france5/bt_accueil2.gif\" width=\"50\" height=\"15\" border=\"0\" alt=\"\"></a></td>    <td valign=\"top\"><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"19\" height=\"1\" border=\"0\" alt=\"\"></td>    <td valign=\"top\"><a href=\"http://www.france5.fr/programmes/\" onMouseOver=\"MM_showHideLayers('site','','hide','emissions','','hide','thematiques','','hide','presentation','','hide'); WCH.Discard('site'); WCH.Discard('emissions'); WCH.Discard('thematiques'); WCH.Discard('presentation'); return false;\"><img src=\"http://arche.francetv.fr/800/france5/bt_programme2.gif\" width=\"71\" height=\"15\" border=\"0\" alt=\"\"></a></td>    <td valign=\"top\"><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"19\" height=\"1\" border=\"0\" alt=\"\"></td>    <td valign=\"top\"><a href=\"#\" onMouseOver=\"MM_showHideLayers('site','','show','emissions','','hide','thematiques','','hide','presentation','','hide'); WCH.Discard('site'); WCH.Discard('emissions'); WCH.Discard('thematiques'); WCH.Discard('presentation'); WCH.Apply('site'); return false;\"><img src=\"http://arche.francetv.fr/800/france5/bt_sites2.gif\" width=\"120\" height=\"15\" border=\"0\" hspace=\"0\" vspace=\"0\" alt=\"\"></a></td>    <td valign=\"top\"><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"19\" height=\"1\" border=\"0\" alt=\"\"></td>    <td valign=\"top\"><a href=\"http://www.france5.fr/concepts/\" onMouseOver=\"MM_showHideLayers('site','','hide','emissions','','show','thematiques','','hide','presentation','','hide'); WCH.Discard('site'); WCH.Discard('emissions'); WCH.Discard('thematiques'); WCH.Discard('presentation'); WCH.Apply('emissions'); return false;\"><img src=\"http://arche.francetv.fr/800/france5/bt_emissions2.gif\" width=\"76\" height=\"15\" border=\"0\" hspace=\"0\" vspace=\"0\" alt=\"\"></a></td>    <td valign=\"top\"><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"19\" height=\"1\" border=\"0\" alt=\"\"></td>    <td valign=\"top\"><a href=\"#\" onMouseOver=\"MM_showHideLayers('site','','hide','emissions','','hide','thematiques','','show','presentation','','hide'); WCH.Discard('site'); WCH.Discard('emissions'); WCH.Discard('thematiques'); WCH.Discard('presentation'); WCH.Apply('thematiques'); return false;\"><img src=\"http://arche.francetv.fr/800/france5/bt_thematiques2.gif\" width=\"89\" height=\"15\" border=\"0\" hspace=\"0\" vspace=\"0\" alt=\"\"></a></td>    <td valign=\"top\"><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"19\" height=\"1\" border=\"0\" alt=\"\"></td>    <td valign=\"top\"><a href=\"#\" onMouseOver=\"MM_showHideLayers('site','','hide','emissions','','hide','thematiques','','hide','presentation','','show'); WCH.Discard('site'); WCH.Discard('emissions'); WCH.Discard('thematiques'); WCH.Discard('presentation'); WCH.Apply('presentation'); return false;\"><img src=\"http://arche.francetv.fr/800/france5/bt_presentation2.gif\" width=\"69\" height=\"15\" border=\"0\" hspace=\"0\" vspace=\"0\" alt=\"\"></a></td>    <td valign=\"top\"><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"20\" height=\"1\" border=\"0\" alt=\"\"></td>  </tr></table><div id=\"site\" style=\"position:absolute; left:325px; top:101px; width:110px; height:220px; z-index:10; background-color: #000000; layer-background-color: #000000; border: 1px none #000000; visibility: hidden;\" class=\"menu-top\" onMouseOver=\"MM_showHideLayers('site','','show','emissions','','hide','thematiques','','hide','presentation','','hide'); WCH.Apply('site');\" onMouseOut=\"MM_showHideLayers('site','','hide','emissions','','hide','thematiques','','hide','presentation','','hide'); WCH.Discard('site');\"> <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://emploi.france5.fr\">France 5 emploi</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://education.france5.fr/\">France 5 éducation</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/zouzous/\">Les Zouzous</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.lesite.tv/\" target=\"_blank\">lesite.tv</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://boutique.francetv.com/\">La Boutique</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\">--------------<br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/bresil/\">L'année du Brésil</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"#\"  onclick=\"MM_openBrWindow('http://tintin.france5.fr/index.html','popup','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=790,height=645')\">Tintin</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/environnement/\">L'environnement</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/egypte/\">L'Egypte ancienne</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/espace/\">L'espace</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/bd/\">La BD</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/chine/\">La Chine</a><BR>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/2gm/\">La seconde guerre</a><BR>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/2gm/\">mondiale</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br></div><div id=\"emissions\" style=\"position:absolute; left:440px; top:101px; width:300px; z-index:10; background-color: #000000; layer-background-color: #000000; border: 1px none #000000; visibility: hidden; \" class=\"menu-top\" onMouseOver=\"MM_showHideLayers('site','','hide','emissions','','show','thematiques','','hide','presentation','','hide'); WCH.Apply('emissions');\" onMouseOut=\"MM_showHideLayers('site','','hide','emissions','','hide','thematiques','','hide','presentation','','hide'); WCH.Discard('emissions');\">  <table width=\"301\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" valign=\"top\">    <tr>      <td width=\"150\" valign=\"top\">  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/25-a-table/\">25 à table</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/a-vous-de-voir/\">A vous de voir</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/asi/\">Arrêt sur images</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/avis-de-sorties/\">Avis de sorties</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/brigade_nature\">Brigade nature</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/cdanslair/\">C dans l'air</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/cpostale/\">Carte gourmande</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/cnotreaffaire/\">C'est notre affaire</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/dossier-scheffer/\">Dossier Scheffer</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/emploiparlenet/\">Emploi par le net</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/en_terre_inconnue/\">En terre inconnue</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/etats-generaux/\">Etats généraux</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/feteforaine/\">Fête foraine</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/genesis2/\">Genesis II</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/geniefrancais/\">Génie français</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/vie_pratique/W00146/1/67519.cfm\">Gestes d'intérieur</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/ateliermode/\">L'atelier de la mode</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/galerie-des-glaces/\">La galerie des glaces</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/bateau-livre/\">Le bateau livre</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/journal-du-blog/\">Le journal du blogue</a><br><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/concepts/w00081/5/\">Les amphis de France 5</a><br><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/les-cavaliers-du-mythe/\">Les cavaliers du mythe</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>      </TD>      <td width=\"1\" valign=\"top\" bgcolor=\"FFFFFF\"><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"30\" border=\"0\" alt=\"\"> </TD>      <td width=\"150\" valign=\"top\">  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/maternelles/\">Les maternelles</a><br>            <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/veyrat/\">L'Herbier gourmand<br><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\">de  Marc Veyrat </a><br>            <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/zouzous/\">Les Zouzous</a><br><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/odyssee/\">L'odyssée de l'espèce</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/oeiletmain/\">L'oeil et la main</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/madame-monsieur-bonsoir/\">Madame, monsieur, bonsoir</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/magazinesante/\">Magazine de la santé</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/citesasie/\">Mystérieuses cités d'Asie</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/palaiseurope/\">Palais d'Europe</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/passeurs-espoir/\">Passeurs d'espoir</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/phenomania/\">Phénomania</a><br><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/pouvoir-et-television/\">Pouvoir et télévision</a><br><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/questionmaison/\">Question maison</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/questionscience/\">Question science</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/ripostes/\">Ripostes</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/environnement/W00236/16/\">Rivages</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/silence-ca-pousse/\">Silence ça pousse !</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://studio5.france5.fr/\">Studio 5</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/ubik/\">Ubik</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/concepts/\">Toutes les émissions</a><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>        <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://tempsforts.france5.fr/\">Bandes annonces</a><br><img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>      </TD>    </tr>  </table></div><div id=\"thematiques\" style=\"position:absolute; left:535px; top:101px; width:127px; height:245px; z-index:10; background-color: #000000; layer-background-color: #000000; border: 1px none #000000; visibility: hidden;\" class=\"menu-top\" onMouseOver=\"MM_showHideLayers('site','','hide','emissions','','hide','thematiques','','show','presentation','','hide'); WCH.Apply('thematiques');\" onMouseOut=\"MM_showHideLayers('site','','hide','emissions','','hide','thematiques','','hide','presentation','','hide'); WCH.Discard('thematiques');\"> <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/actu-societe/\">Actu - Société</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/arts-culture/\">Arts et culture</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/decouverte-nature/\">Découverte - Nature</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://emploi.france5.fr\">Emploi - Eco</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/famille-jeunesse/\">Famille - Jeunesse</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/histoire/\">Histoire</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/sante/\">Santé</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/sciences/\">Sciences</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/vie-pratique/\">Vie pratique</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\">--------------<br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/jeux/\">Jeux</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/videos/\">Vidéos</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/participez/\">Participez</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br></div><div id=\"presentation\" style=\"position:absolute; left:633px; top:101px; width:123px; height:245px; z-index:10; background-color: #000000; layer-background-color: #000000; border: 1px none #000000; visibility: hidden;\" class=\"menu-top\" onMouseOver=\"MM_showHideLayers('site','','hide','emissions','','hide','thematiques','','hide','presentation','','show'); WCH.Apply('presentation');\" onMouseOut=\"MM_showHideLayers('site','','hide','emissions','','hide','thematiques','','hide','presentation','','hide'); WCH.Discard('presentation');\"> <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/pres/W00062/4/\">La chaîne</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/pres/W00062/10/\">Les programmes</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/pres/W00062/9/\">Les émissions</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/pres/W00062/6/\">Les coulisses</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/pres/W00062/7/\">Autour de France 5</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/tnt/\">La TNT</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/presse/\">Côté presse</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"4\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/pres/W00062/8/\">English readers</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\">--------------<br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/contact/\">Contactez-nous</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/emploi/w00076/6/\">France 5 recrute</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/contact/W00069/3/\">Foire aux questions</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/aide/W00070/5/\">Infos légales</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"15\" height=\"6\" border=\"0\" alt=\"\"><a href=\"http://www.france5.fr/aide/W00070/3/\">Crédits</a><br>  <img src=\"http://arche.francetv.fr/800/france5/shim.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br></div>                                                                                                                                                                        ");

