Affichage différent entre IE et Mozilla
Ppouille
Messages postés
280
Date d'inscription
Statut
Membre
Dernière intervention
-
Ppouille Messages postés 280 Date d'inscription Statut Membre Dernière intervention -
Ppouille Messages postés 280 Date d'inscription Statut Membre Dernière intervention -
Bonjour,
J'ai créé un ptit site avec frontpage (je sais c'est pas l'idéal mais je ne sais pas faire mieux lol) et sur la page home de celui-ci, j'ai inséréré un script date et heure du jour.
Lorsque j'ouvre le site via IE la date et heure s'affiche bien (en blanc sur font noir) mais lorsque j'ouvre le site avec Mozilla, la date et l'heure s'affiche en noir avec un espace avant et après plus grand.
Comment rectifier cela ?
D'avance merci pour votre aide précieuse.
J'ai créé un ptit site avec frontpage (je sais c'est pas l'idéal mais je ne sais pas faire mieux lol) et sur la page home de celui-ci, j'ai inséréré un script date et heure du jour.
Lorsque j'ouvre le site via IE la date et heure s'affiche bien (en blanc sur font noir) mais lorsque j'ouvre le site avec Mozilla, la date et l'heure s'affiche en noir avec un espace avant et après plus grand.
Comment rectifier cela ?
D'avance merci pour votre aide précieuse.
A voir également:
- Affichage différent entre IE et Mozilla
- Downloadhelper mozilla - Télécharger - Outils pour navigateurs
- Différence entre tcp et udp - Guide
- Difference entre million et milliard - Accueil - Technologies
- Mozilla firefox - Télécharger - Navigateurs
- Affichage double ecran - Guide
11 réponses
Voici, merci pour ton aide.
<head>
<script type="text/javascript">
<!--
function afficheDate() {
jour = new Array ("Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi");
mois = new Array ("Jan","Fév","Mars","Avr","Mai","Juin","Juil.","Août","Sept.","Oct.","Nov.","Déc.");
date=new Date();
datejour=date.getDate();
heure=date.getHours();
minute=date.getMinutes();
seconde=date.getSeconds();
if (date.getDate()<10) datejour="0"+datejour;
if (heure<10) heure="0"+heure;
if (minute<10) minute="0"+minute;
if (seconde<10) seconde="0"+seconde;
document.getElementById("texteDate").innerHTML=jour[date.getDay()]+" "+datejour+" "+mois[date.getMonth()]+" - "+heure+":"+minute+":"+seconde;
setTimeout("afficheDate()", 1000);
}
//-->
</script>
<head>
<script type="text/javascript">
<!--
function afficheDate() {
jour = new Array ("Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi");
mois = new Array ("Jan","Fév","Mars","Avr","Mai","Juin","Juil.","Août","Sept.","Oct.","Nov.","Déc.");
date=new Date();
datejour=date.getDate();
heure=date.getHours();
minute=date.getMinutes();
seconde=date.getSeconds();
if (date.getDate()<10) datejour="0"+datejour;
if (heure<10) heure="0"+heure;
if (minute<10) minute="0"+minute;
if (seconde<10) seconde="0"+seconde;
document.getElementById("texteDate").innerHTML=jour[date.getDay()]+" "+datejour+" "+mois[date.getMonth()]+" - "+heure+":"+minute+":"+seconde;
setTimeout("afficheDate()", 1000);
}
//-->
</script>
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
Ben, c'est-à-dire que là tu nous donnes le code d'une fonction JavaScript qui crée une chaîne donnant la date, mais ton pb est dans la mise en page, c'est-à-dire dans du code CSS ou HTML
La je ne comprends plus rien lol
Voici le code de la page complète, j'espère que tu y verras plus clair !
Encore merci pour ton aide.
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="http://www.w3.org/TR/REC-html40/">
<head>
<script type="text/javascript">
<!--
function afficheDate() {
jour = new Array ("Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi");
mois = new Array ("Jan","Fév","Mars","Avr","Mai","Juin","Juil.","Août","Sept.","Oct.","Nov.","Déc.");
date=new Date();
datejour=date.getDate();
heure=date.getHours();
minute=date.getMinutes();
seconde=date.getSeconds();
if (date.getDate()<10) datejour="0"+datejour;
if (heure<10) heure="0"+heure;
if (minute<10) minute="0"+minute;
if (seconde<10) seconde="0"+seconde;
document.getElementById("texteDate").innerHTML=jour[date.getDay()]+" "+datejour+" "+mois[date.getMonth()]+" - "+heure+":"+minute+":"+seconde;
setTimeout("afficheDate()", 1000);
}
//-->
</script>
<style>
a{
text-decoration:none;
}
a:hover{
text-decoration:underline;
}
p.sonnom{
font-family:verdana, arial, sans-serif;
}
p.sonnom2{
font-family:times, arial, sans-serif;
</style>
<meta http-equiv="Content-Language" content="fr-be">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Royale Entente Bertrigeoise</title>
<script language="JavaScript">
<!--
function FP_preloadImgs() {//v1.0
var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();
for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; }
}
function FP_swapImg() {//v1.0
var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2; n<args.length;
n+=2) { elm=FP_getObjectByID(args[n]); if(elm) { doc.$imgSwaps[doc.$imgSwaps.length]=elm;
elm.$src=elm.src; elm.src=args[n+1]; } }
}
function FP_getObjectByID(id,o) {//v1.0
var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id);
else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;
if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)
for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }
f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;
for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return el; } }
return null;
}
// -->
</script>
<style fprolloverstyle>A:hover {color: #FF0000; text-decoration: underline; font-weight: bold}
.font5
{color:windowtext;
font-size:8.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Verdana, sans-serif;
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
.font6
{color:windowtext;
font-size:8.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Verdana, sans-serif;
}
.font7
{color:windowtext;
font-size:8.0pt;
font-weight:700;
font-style:normal;
text-decoration:none;
font-family:Verdana, sans-serif;
}
.master
{
font-size:10pt; color:#FFFFFF
}
</style>
</head>
<body onLoad="FP_preloadImgs(/*url*/'Boutons/button9.gif', /*url*/'Boutons/AccueilBleu2.gif', /*url*/'Boutons/AccueilBleu3.gif', /*url*/'Boutons/Forum2.gif', /*url*/'Boutons/Forum3.gif', /*url*/'Boutons/ContactezNous2.gif', /*url*/'Boutons/ContactezNous3.gif', /*url*/'Boutons/FicheDuClub2.gif', /*url*/'Boutons/FicheDuClub3.gif', /*url*/'Boutons/Liens2.gif', /*url*/'Boutons/Liens3.gif', /*url*/'Boutons/EquipePremiere2.gif', /*url*/'Boutons/EquipePremiere3.gif', /*url*/'Boutons/CalendrierPremiere2.gif', /*url*/'Boutons/CalendrierPremiere3.gif', /*url*/'Boutons/EquipeReserve2.gif', /*url*/'Boutons/EquipeReserve3.gif', /*url*/'Boutons/LeClub2.gif', /*url*/'Boutons/LeClub3.gif', /*url*/'Boutons/Supporters2.gif', /*url*/'Boutons/Supporters3.gif', /*url*/'Boutons/LoiFootball2.gif', /*url*/'Boutons/LoiFootball3.gif', /*url*/'Boutons/EquipesDages2.gif', /*url*/'Boutons/EquipesDages3.gif'); afficheDate()" bgcolor="#000066" style="text-align: left">
<div align="center">
<table border="0" cellpadding="0" cellspacing="0" width="902" height="1617">
<!-- MSTableType="layout" -->
<tr>
<td colspan="5" align="center" style="border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px; border-top-style:solid; border-top-width:1px">
<!-- MSCellType="ContentHead" -->
<p align="center">
<img border="0" src="Images/banniere%202011-2012.jpg" width="898" height="180"></td>
<td height="181"></td>
</tr>
<tr>
<td valign="top" style="border-style:solid; border-width:1px; " bgcolor="#CC0000">
<!-- MSCellType="ContentHead" -->
<p align="center">
<a href="Accueil.html">
<img border="0" id="img157" src="Boutons/AccueilBleu1.gif" height="25" width="178" alt="Accueil" onmouseover="FP_swapImg(1,0,/*id*/'img157',/*url*/'Boutons/AccueilBleu2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img157',/*url*/'Boutons/AccueilBleu1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img157',/*url*/'Boutons/AccueilBleu3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img157',/*url*/'Boutons/AccueilBleu2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #000066; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Accueil"></a></td>
<td valign="top" style="border-right-style: solid; border-right-width: 1px; border-bottom-style: solid; border-bottom-width: 1px; border-top-style:solid; border-top-width:1px" bgcolor="#CC0000" width="179">
<!-- MSCellType="ContentHead" -->
<p align="center">
<a href="https://rebertrix.xooit.fr/index.php">
<img border="0" id="img158" src="Boutons/Forum1.gif" height="25" width="179" alt="Forum" onmouseover="FP_swapImg(1,0,/*id*/'img158',/*url*/'Boutons/Forum2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img158',/*url*/'Boutons/Forum1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img158',/*url*/'Boutons/Forum3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img158',/*url*/'Boutons/Forum2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Forum"></a></td>
<td valign="top" style="border-right-style: solid; border-right-width: 1px; border-bottom-style: solid; border-bottom-width: 1px; border-top-style:solid; border-top-width:1px" bgcolor="#CC0000" width="179">
<!-- MSCellType="ContentHead" -->
<p align="center">
<a href="Contactez-nous.php">
<img border="0" id="img159" src="Boutons/ContactezNous1.gif" height="25" width="179" alt="Contactez-nous" onmouseover="FP_swapImg(1,0,/*id*/'img159',/*url*/'Boutons/ContactezNous2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img159',/*url*/'Boutons/ContactezNous1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img159',/*url*/'Boutons/ContactezNous3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img159',/*url*/'Boutons/ContactezNous2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Contactez-nous"></a></td>
<td valign="top" style="border-right-style: solid; border-right-width: 1px; border-bottom-style: solid; border-bottom-width: 1px; border-top-style:solid; border-top-width:1px" bgcolor="#CC0000" width="179">
<!-- MSCellType="ContentHead" -->
<p align="center">
<a href="Fiche_du_club.html">
<img border="0" id="img160" src="Boutons/FicheDuClub1.gif" height="25" width="179" alt="Fiche du club" onmouseover="FP_swapImg(1,0,/*id*/'img160',/*url*/'Boutons/FicheDuClub2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img160',/*url*/'Boutons/FicheDuClub1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img160',/*url*/'Boutons/FicheDuClub3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img160',/*url*/'Boutons/FicheDuClub2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Fiche du club"></a></td>
<td valign="top" style="border-right-style: solid; border-right-width: 1px; border-bottom-style: solid; border-bottom-width: 1px; border-top-style:solid; border-top-width:1px" bgcolor="#CC0000">
<!-- MSCellType="ContentHead" -->
<p align="center">
<a href="Liens.html">
<img border="0" id="img161" src="Boutons/Liens1.gif" height="25" width="179" alt="Liens" onmouseover="FP_swapImg(1,0,/*id*/'img161',/*url*/'Boutons/Liens2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img161',/*url*/'Boutons/Liens1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img161',/*url*/'Boutons/Liens3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img161',/*url*/'Boutons/Liens2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Liens"></a></td>
<td height="27"></td>
</tr>
<tr>
<td valign="top" style="border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px; " bgcolor="#CC0000">
<!-- MSCellType="NavBody" -->
<div align="center">
<table border="0" width="100%" id="table25" cellspacing="0" cellpadding="0">
<tr>
<td align="center">
<div style="border-bottom: 1px solid #FFFFFF">
<a href="Equipe_premiere.html">
<img border="0" id="img162" src="Boutons/EquipePremiere1.gif" height="25" width="178" alt="Equipe première" onmouseover="FP_swapImg(1,0,/*id*/'img162',/*url*/'Boutons/EquipePremiere2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img162',/*url*/'Boutons/EquipePremiere1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img162',/*url*/'Boutons/EquipePremiere3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img162',/*url*/'Boutons/EquipePremiere2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Equipe première"></a></div>
</td>
</tr>
<tr>
<td align="center">
<div style="border-bottom: 1px solid #FFFFFF">
<a href="Calendrier.html">
<img border="0" id="img163" src="Boutons/CalendrierPremiere1.gif" height="25" width="178" alt="Calendrier" onmouseover="FP_swapImg(1,0,/*id*/'img163',/*url*/'Boutons/CalendrierPremiere2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img163',/*url*/'Boutons/CalendrierPremiere1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img163',/*url*/'Boutons/CalendrierPremiere3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img163',/*url*/'Boutons/CalendrierPremiere2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Calendrier"></a></div>
</td>
</tr>
<tr>
<td align="center">
<div style="border-bottom: 1px solid #FFFFFF">
<a href="Equipe_reserve.html">
<img border="0" id="img164" src="Boutons/EquipeReserve1.gif" height="25" width="178" alt="Equipe réserve" onmouseover="FP_swapImg(1,0,/*id*/'img164',/*url*/'Boutons/EquipeReserve2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img164',/*url*/'Boutons/EquipeReserve1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img164',/*url*/'Boutons/EquipeReserve3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img164',/*url*/'Boutons/EquipeReserve2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Equipe réserve"></a></div>
</td>
</tr>
<tr>
<td align="center">
<div style="border-bottom: 1px solid #FFFFFF">
<a href="Equipes_d'ages.html">
<img border="0" id="img170" src="Boutons/EquipesDages1.gif" height="25" width="178" alt="Equipes d'âges" onmouseover="FP_swapImg(1,0,/*id*/'img170',/*url*/'Boutons/EquipesDages2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img170',/*url*/'Boutons/EquipesDages1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img170',/*url*/'Boutons/EquipesDages3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img170',/*url*/'Boutons/EquipesDages2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Equipes d'âges"></a></div>
</td>
</tr>
<tr>
<td align="center">
<div style="border-bottom: 1px solid #FFFFFF">
<a href="Le_club.html">
<img border="0" id="img166" src="Boutons/LeClub1.gif" height="25" width="178" alt="Le club" onmouseover="FP_swapImg(1,0,/*id*/'img166',/*url*/'Boutons/LeClub2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img166',/*url*/'Boutons/LeClub1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img166',/*url*/'Boutons/LeClub3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img166',/*url*/'Boutons/LeClub2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Le club"></a></div>
</td>
</tr>
<tr>
<td align="center">
<div style="border-bottom: 1px solid #FFFFFF">
<a href="Supporters.html">
<img border="0" id="img167" src="Boutons/Supporters1.gif" height="25" width="178" alt="Supporters" onmouseover="FP_swapImg(1,0,/*id*/'img167',/*url*/'Boutons/Supporters2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img167',/*url*/'Boutons/Supporters1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img167',/*url*/'Boutons/Supporters3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img167',/*url*/'Boutons/Supporters2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Supporters"></a></div>
</td>
</tr>
<tr>
<td align="center">
<div style="border-bottom: 1px solid #FFFFFF">
<a href="Loi_football.html">
<img border="0" id="img168" src="Boutons/LoiFootball1.gif" height="25" width="178" alt="Loi football" onmouseover="FP_swapImg(1,0,/*id*/'img168',/*url*/'Boutons/LoiFootball2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img168',/*url*/'Boutons/LoiFootball1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img168',/*url*/'Boutons/LoiFootball3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img168',/*url*/'Boutons/LoiFootball2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Loi football"></a></div>
</td>
</tr>
</table>
</div>
</td>
<td valign="top" style="border-bottom-style: solid; border-bottom-width: 1px; border-right-style:solid; border-right-width:1px" bgcolor="#CC0000" colspan="3" rowspan="8">
<!-- MSCellType="ContentBody" -->
<div align="center">
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Le calendrier 2012-2013 de la
D3 B est maintenant connu !</font></b></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF"><a href="Calendrier.html">
<font color="#FFFF00">Consultez-le ici</font></a></font></p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">
__________________________________________________________________</font></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Agenda des rencontres de
préparation de notre équipe première</font></b></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">21/07 - 18:00</font></p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">à Villance</font></p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Bertrix - Wiltz (D1 Lux)</font></b></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">22/07 - 17:00</font></p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">à Bohan</font></p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Bertrix - Walhain (Prom)</font></b></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">25/07 - 20:00</font></p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Bièvre (Prom) - Bertrix</font></b></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">29/07 - 16:00</font></p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">à Junglister (GDL)</font></p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Pétange (D1 Lux) - Bertrix</font></b></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">05/08 - 16:00</font></p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Bogny/Meuse (DH Fra) - Bertrix</font></b></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">08/08 - 20:00</font></p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Sedan (D2 Fra) - Bertrix</font></b></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">
__________________________________________________________________</font></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<table cellpadding="0" cellspacing="0" width="520" height="20" id="table759">
<!-- MSTableType="layout" -->
<tr>
<td align="center">
<p style="margin-top: 0; margin-bottom: 0">
<img border="0" src="Match_gala.png" width="520" height="350"></td>
</tr>
</table>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">
__________________________________________________________________</font></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<table cellpadding="0" cellspacing="0" width="520" height="20" id="table758">
<!-- MSTableType="layout" -->
<tr>
<td width="520" height="20" valign="top">
<p align="center"><b>
<font face="Verdana" color="#FFFFFF">La Royale
Entente Bertrigeoise cherche</font></b></p>
<p align="center"><b>
<font face="Verdana" color="#FFFFFF"> un
Responsable Matériel</font></b></p>
<p align="center"><b>
<font face="Verdana" color="#FFFFFF" size="2">
Si vous êtes intéressé, merci de contacter
Patrice Laime au :</font></b></p>
<p align="center" style="margin-top: 0; margin-bottom: 0">
<b>
<font face="Verdana" size="2" color="#FFFFFF">
0479/80.69.75.</font></b></p></td>
</tr>
</table>
<p style="margin-top: 0; margin-bottom: 0">
</p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">
__________________________________________________________________</font></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<table cellpadding="0" cellspacing="0" width="300" height="61" id="table753">
<!-- MSTableType="layout" -->
<tr>
<td align="center">
<p style="margin-top: 0; margin-bottom: 0">
<img border="0" src="Logos/Logo_Bertrix_Net.png" width="40" height="40"></td>
<td align="center" rowspan="2" width="60">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="4" color="#FFFF00">1 - 1</font></b></td>
<td align="center" height="40">
<p style="margin-top: 0; margin-bottom: 0">
<img border="0" src="Logos/Logo_La_Louviere_Centre.gif" width="28" height="40"></td>
</tr>
<tr>
<td align="center" width="120">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Bertrix</font></b></td>
<td align="center" height="21" width="120">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">La Louvière</font></b></td>
</tr>
</table>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" color="#FFFF00" size="4">BERTRIX RESTE EN D3</font></b></p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">En effet, a égalité de points
et de victoires avec le FC Bleid, nous </font></p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">restons devant les panis à la
différence de buts.</font></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<table cellpadding="0" cellspacing="0" width="520" height="105" id="table754">
<!-- MSTableType="layout" -->
<tr>
<td height="25" valign="top" colspan="5">
<p style="margin-top: 0; margin-bottom: 0">
<u><b><font face="Verdana" size="2" color="#FFFFFF">Les autres
rencontres de la 34ème journée en DIII A</font></b></u></td>
</tr>
<tr>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">Tournai - Deinze
</font></td>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFF00">0-1</font></b></td>
<td valign="top">
</td>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">Torhout - Virton</font></td>
<td valign="top" height="20">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFF00">3-2</font></b></td>
</tr>
<tr>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">Bleid - Renaix</font></td>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFF00">4-2</font></b></td>
<td valign="top">
</td>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">Oudenaarde - Ath</font></td>
<td valign="top" height="20">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFF00">2-3</font></b></td>
</tr>
<tr>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">Heppignies - Verviers</font></td>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFF00">1-2</font></b></td>
<td valign="top">
</td>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">Huy - Brakel</font></td>
<td valign="top" height="20">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFF00">1-1</font></b></td>
</tr>
<tr>
<td width="210" valign="top">
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">Coxyde - Mouscron</font></td>
<td valign="top" width="40">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFF00">3-7</font></b></td>
<td width="20" valign="top">
</td>
<td width="210" valign="top">
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">Waregem - O. Charleroi</font></td>
<td valign="top" height="20" width="40">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFF00">5-0 ff</font></b></td>
</tr>
</table>
<p style="margin-top: 0; margin-bottom: 0">
</p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
</p>
</div></td>
<td valign="top" rowspan="4" style="border-right-style: solid; border-right-width: 1px; border-bottom-style: solid; border-bottom-width: 1px" bgcolor="#C0C0C0" background="Fonds%20d'ecran/Fond_Ecran_Matchs_a_venir.jpg">
<!-- MSCellType="NavBody2" -->
<table border="1" width="100%" style="border-width: 0px">
<tr>
<td style="border-style: none; border-width: medium" colspan="2">
<p align="center"> <span id ="texteDate" style="font-family: Verdana; font-size: 10px; color=#FFFFFF; font-weight:bold;"></span></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" colspan="2">
<div style="border-bottom: 1px solid #FFFFFF">
<p align="center"><b>
<font face="Verdana" size="2" color="#FFFF00">MATCHS A
VENIR</font></b></div>
</td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" rowspan="3" align="center" width="34%">
<table border="1" width="53" id="table21" cellspacing="0" bgcolor="#CC0000" cellpadding="3" bordercolorlight="#FFFFFF" bordercolordark="#FFFFFF" style="border-width: 0px">
<tr>
<td width="43" align="center">
<p style="margin-top: 0; margin-bottom: 0">
<b><font face="Verdana" size="2" color="#FFFFFF">27-06</font></b></p>
<p style="margin-top: 0; margin-bottom: 0">
<span style="background-color: #FFFFFF"><b>
<font face="Verdana" size="2">19</font></b></span><font color="#000000" size="2" face="Verdana"><b><span style="background-color: #FFFFFF">:30</span></b></font></td>
</tr>
</table></td>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<font face="Verdana" size="2" color="#FFFFFF">Neuvillers
(P2)</font></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<b><font face="Verdana" size="2" color="#FFFF00">0 - 10</font></b></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<b><font face="Verdana" size="2" color="#FFFFFF">Bertrix</font></b></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" colspan="2">
<div style="border-bottom: 1px solid #FFFFFF">
<p style="margin-top: 6px; margin-bottom: 6px" align="left">
<font face="Verdana" style="font-size: 6pt" color="#00FFFF">
Rencontre amicale</font></div>
</td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" rowspan="3" align="center" width="34%">
<table border="1" width="53" id="table22" cellspacing="0" bgcolor="#CC0000" cellpadding="3" bordercolorlight="#FFFFFF" bordercolordark="#FFFFFF" style="border-width: 0px">
<tr>
<td width="43" align="center">
<p style="margin-top: 0; margin-bottom: 0">
<b><font face="Verdana" size="2" color="#FFFFFF">06-05</font></b></p>
<p style="margin-top: 0; margin-bottom: 0">
<span style="background-color: #FFFFFF"><b>
<font face="Verdana" size="2">15</font></b></span><font color="#000000" size="2" face="Verdana"><b><span style="background-color: #FFFFFF">:00</span></b></font></td>
</tr>
</table></td>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<b><font face="Verdana" size="2" color="#FFFFFF">Bertrix</font></b></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<b><font face="Verdana" size="2" color="#FFFF00">1 - 1</font></b></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<font face="Verdana" size="2">
<a href="http://www.urlc.be/"><font color="#FFFFFF">La
Louvière</font></a></font></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" colspan="2">
<div style="border-bottom: 1px solid #FFFFFF">
<p style="margin-top: 6px; margin-bottom: 6px" align="left">
<font face="Verdana" style="font-size: 6pt" color="#00FFFF">
Championnat - Journée 34</font></div>
</td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" rowspan="3" align="center" width="34%">
<table border="1" width="53" id="table103" cellspacing="0" bgcolor="#CC0000" cellpadding="3" bordercolorlight="#FFFFFF" bordercolordark="#FFFFFF" style="border-width: 0px">
<tr>
<td width="43" align="center">
<p style="margin-top: 0; margin-bottom: 0">
<b><font face="Verdana" size="2" color="#FFFFFF">29-04</font></b></p>
<p style="margin-top: 0; margin-bottom: 0">
<span style="background-color: #FFFFFF"><b>
<font face="Verdana" size="2">15</font></b></span><font color="#000000" size="2" face="Verdana"><b><span style="background-color: #FFFFFF">:00</span></b></font></td>
</tr>
</table></td>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<a href="https://www.ksk-ronse.be/">
<font color="#FFFFFF" face="Verdana" size="2">Renaix</font></a></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<b><font face="Verdana" size="2" color="#FFFF00">3 - 1</font></b></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<b><font face="Verdana" size="2" color="#FFFFFF">Bertrix</font></b></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" colspan="2">
<div>
<p align="left" style="margin-top: 6px; margin-bottom: 6px">
<font face="Verdana" style="font-size: 6pt" color="#00FFFF">
Championnat - Journée 33</font></div>
</td>
</tr>
</table>
</td>
<td height="182"></td>
</tr>
<tr>
<td style="border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px; border-bottom-style:solid; border-bottom-width:1px" bgcolor="#FFFFFF" align="center">
<!-- MSCellType="NavBody" -->
<b><font face="Verdana" size="2">Merci à nos partenaires</font></b></td>
<td height="17"></td>
</tr>
<tr>
<td style="border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px; border-bottom-style:solid; border-bottom-width:1px" bgcolor="#CC0000" align="center">
<!-- MSCellType="NavBody" -->
<p align="center">
<img border="0" src="Images/Diapo.gif" width="178" height="105"></td>
<td height="106"></td>
</tr>
<tr>
<td style="border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px; border-bottom-style: solid; border-bottom-width: 1px" bgcolor="#FFFFFF" align="center" rowspan="2">
<!-- MSCellType="NavBody" -->
<b><font face="Verdana" size="2" color="#FF0000">
<a href="Formulaire.html"><font color="#FF0000">
<a href="Sponsoring.html"><font color="#FF0000">Votre publicité ici
?</font></a></font></a></font></b></td>
<td height="2"></td>
</tr>
<tr>
<td valign="top" style="border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px" rowspan="2">
<a href="http://football-regional.sudpresse.be/live/index.php?compet=BE_D3A">
<img border="0" src="Images/MatchEnDirectD3A.jpg" width="179" height="64"></a></td>
<td height="15"></td>
</tr>
<tr>
<td valign="top" style="border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px; border-bottom-style: solid; border-bottom-width: 1px" bgcolor="#CC0000" width="178" rowspan="3">
<!-- MSCellType="NavBody" -->
</td>
<td height="49"></td>
</tr>
<tr>
<td bgcolor="#CC0000" style="border-right-style: solid; border-right-width: 1px; border-bottom-style: solid; border-bottom-width: 1px" align="center" background="Fonds%20d'ecran/Fond_Classement_Accueil.jpg">
<table border="1" width="100%" id="table109" style="border-width: 0px">
<tr>
<td style="border-style: none; border-width: medium">
<p align="center" style="margin-top: 0; margin-bottom: 0">
<span style="font-weight: 700">
<font face="Verdana" style="font-size: 7pt">
<a href="Calendrier_complet.html"><font color="#FFFF00">
Calendrier complet</font></a></font></span></p>
<p align="center" style="margin-top: 0; margin-bottom: 0">
<span style="font-weight: 700">
<font face="Verdana" size="2">Classement au 00/00</font></span></p>
<p align="center" style="margin-top: 0; margin-bottom: 0">
<span style="font-weight: 700">
<font face="Verdana" style="font-size: 7pt" color="#FF0000">
<a href="Classement_complet.html"><font color="#FF0000">Consultez le
classement complet</font></a></font></span></td>
</tr>
</table>
<table x:str border="0" cellpadding="0" cellspacing="0" width="172" style="border-collapse:
collapse;width:129pt" id="table750">
<colgroup>
<col width="24" style="width: 18pt">
<col width="4" style="width: 3pt">
<col width="113" style="width: 85pt">
</colgroup>
<tr height="19" style="height: 14.25pt">
<td height="19" align="right" width="24" style="height: 14.25pt; width: 18pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border: .5pt solid gray; padding: 0px" x:num>
1</td>
<td width="4" style="width: 3pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: medium none; border-top: .5pt solid gray; border-bottom: .5pt solid gray; padding: 0px">
</td>
<td width="113" style="width: 85pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: .5pt solid gray; border-bottom: .5pt solid gray; padding: 0px">
Ath</td>
<td width="31" style="width: 23pt; font-weight: 700; font-family: Verdana, sans-serif; text-align: center; color: windowtext; font-size: 10.0pt; font-style: normal; text-decoration: none; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: .5pt solid gray; border-bottom: .5pt solid gray; padding: 0px" x:num>
00</td>
</tr>
<tr height="19" style="height: 14.25pt">
<td height="19" align="right" style="height: 14.25pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: .5pt solid gray; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
2</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: medium none; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
<b><font color="#0000FF">Bertrix</font></b></td>
<td style="font-weight: 700; font-family: Verdana, sans-serif; text-align: center; color: windowtext; font-size: 10.0pt; font-style: normal; text-decoration: none; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
00</td>
</tr>
<tr height="19" style="height: 14.25pt">
<td height="19" align="right" style="height: 14.25pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: .5pt solid gray; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
3</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: medium none; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
Bocholt</td>
<td style="font-weight: 700; font-family: Verdana, sans-serif; text-align: center; color: windowtext; font-size: 10.0pt; font-style: normal; text-decoration: none; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
00</td>
</tr>
<tr height="19" style="height: 14.25pt">
<td height="19" align="right" style="height: 14.25pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: .5pt solid gray; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
4</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: medium none; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
Ciney</td>
<td style="font-weight: 700; font-family: Verdana, sans-serif; text-align: center; color: windowtext; font-size: 10.0pt; font-style: normal; text-decoration: none; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
00</td>
</tr>
<tr height="19" style="height: 14.25pt">
<td height="19" align="right" style="height: 14.25pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: .5pt solid gray; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
5</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: medium none; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
Dender</td>
<td style="font-weight: 700; font-family: Verdana, sans-serif; text-align: center; color: windowtext; font-size: 10.0pt; font-style: normal; text-decoration: none; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
00</td>
</tr>
<tr height="19" style="height: 14.25pt">
<td height="19" align="right" style="height: 14.25pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: .5pt solid gray; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
6</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: medium none; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
Diegem</td>
<td style="font-weight: 700; font-family: Verdana, sans-serif; text-align: center; color: windowtext; font-size: 10.0pt; font-style: normal; text-decoration: none; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
00</td>
</tr>
<tr height="19" style="height: 14.25pt">
<td height="19" align="right" style="height: 14.25pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: .5pt solid gray; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
7</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: medium none; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
Grimbergen</td>
<td style="font-weight: 700; font-family: Verdana, sans-serif; text-align: center; color: windowtext; font-size: 10.0pt; font-style: normal; text-decoration: none; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
00</td>
</tr>
<tr height="19" style="height: 14.25pt">
<td height="19" align="right" style="height: 14.25pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: .5pt solid gray; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
8</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: medium none; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
</td>
<td style="
Voici le code de la page complète, j'espère que tu y verras plus clair !
Encore merci pour ton aide.
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="http://www.w3.org/TR/REC-html40/">
<head>
<script type="text/javascript">
<!--
function afficheDate() {
jour = new Array ("Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi");
mois = new Array ("Jan","Fév","Mars","Avr","Mai","Juin","Juil.","Août","Sept.","Oct.","Nov.","Déc.");
date=new Date();
datejour=date.getDate();
heure=date.getHours();
minute=date.getMinutes();
seconde=date.getSeconds();
if (date.getDate()<10) datejour="0"+datejour;
if (heure<10) heure="0"+heure;
if (minute<10) minute="0"+minute;
if (seconde<10) seconde="0"+seconde;
document.getElementById("texteDate").innerHTML=jour[date.getDay()]+" "+datejour+" "+mois[date.getMonth()]+" - "+heure+":"+minute+":"+seconde;
setTimeout("afficheDate()", 1000);
}
//-->
</script>
<style>
a{
text-decoration:none;
}
a:hover{
text-decoration:underline;
}
p.sonnom{
font-family:verdana, arial, sans-serif;
}
p.sonnom2{
font-family:times, arial, sans-serif;
</style>
<meta http-equiv="Content-Language" content="fr-be">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Royale Entente Bertrigeoise</title>
<script language="JavaScript">
<!--
function FP_preloadImgs() {//v1.0
var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();
for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; }
}
function FP_swapImg() {//v1.0
var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2; n<args.length;
n+=2) { elm=FP_getObjectByID(args[n]); if(elm) { doc.$imgSwaps[doc.$imgSwaps.length]=elm;
elm.$src=elm.src; elm.src=args[n+1]; } }
}
function FP_getObjectByID(id,o) {//v1.0
var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id);
else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;
if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)
for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }
f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;
for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return el; } }
return null;
}
// -->
</script>
<style fprolloverstyle>A:hover {color: #FF0000; text-decoration: underline; font-weight: bold}
.font5
{color:windowtext;
font-size:8.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Verdana, sans-serif;
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
.font6
{color:windowtext;
font-size:8.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Verdana, sans-serif;
}
.font7
{color:windowtext;
font-size:8.0pt;
font-weight:700;
font-style:normal;
text-decoration:none;
font-family:Verdana, sans-serif;
}
.master
{
font-size:10pt; color:#FFFFFF
}
</style>
</head>
<body onLoad="FP_preloadImgs(/*url*/'Boutons/button9.gif', /*url*/'Boutons/AccueilBleu2.gif', /*url*/'Boutons/AccueilBleu3.gif', /*url*/'Boutons/Forum2.gif', /*url*/'Boutons/Forum3.gif', /*url*/'Boutons/ContactezNous2.gif', /*url*/'Boutons/ContactezNous3.gif', /*url*/'Boutons/FicheDuClub2.gif', /*url*/'Boutons/FicheDuClub3.gif', /*url*/'Boutons/Liens2.gif', /*url*/'Boutons/Liens3.gif', /*url*/'Boutons/EquipePremiere2.gif', /*url*/'Boutons/EquipePremiere3.gif', /*url*/'Boutons/CalendrierPremiere2.gif', /*url*/'Boutons/CalendrierPremiere3.gif', /*url*/'Boutons/EquipeReserve2.gif', /*url*/'Boutons/EquipeReserve3.gif', /*url*/'Boutons/LeClub2.gif', /*url*/'Boutons/LeClub3.gif', /*url*/'Boutons/Supporters2.gif', /*url*/'Boutons/Supporters3.gif', /*url*/'Boutons/LoiFootball2.gif', /*url*/'Boutons/LoiFootball3.gif', /*url*/'Boutons/EquipesDages2.gif', /*url*/'Boutons/EquipesDages3.gif'); afficheDate()" bgcolor="#000066" style="text-align: left">
<div align="center">
<table border="0" cellpadding="0" cellspacing="0" width="902" height="1617">
<!-- MSTableType="layout" -->
<tr>
<td colspan="5" align="center" style="border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px; border-top-style:solid; border-top-width:1px">
<!-- MSCellType="ContentHead" -->
<p align="center">
<img border="0" src="Images/banniere%202011-2012.jpg" width="898" height="180"></td>
<td height="181"></td>
</tr>
<tr>
<td valign="top" style="border-style:solid; border-width:1px; " bgcolor="#CC0000">
<!-- MSCellType="ContentHead" -->
<p align="center">
<a href="Accueil.html">
<img border="0" id="img157" src="Boutons/AccueilBleu1.gif" height="25" width="178" alt="Accueil" onmouseover="FP_swapImg(1,0,/*id*/'img157',/*url*/'Boutons/AccueilBleu2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img157',/*url*/'Boutons/AccueilBleu1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img157',/*url*/'Boutons/AccueilBleu3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img157',/*url*/'Boutons/AccueilBleu2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #000066; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Accueil"></a></td>
<td valign="top" style="border-right-style: solid; border-right-width: 1px; border-bottom-style: solid; border-bottom-width: 1px; border-top-style:solid; border-top-width:1px" bgcolor="#CC0000" width="179">
<!-- MSCellType="ContentHead" -->
<p align="center">
<a href="https://rebertrix.xooit.fr/index.php">
<img border="0" id="img158" src="Boutons/Forum1.gif" height="25" width="179" alt="Forum" onmouseover="FP_swapImg(1,0,/*id*/'img158',/*url*/'Boutons/Forum2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img158',/*url*/'Boutons/Forum1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img158',/*url*/'Boutons/Forum3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img158',/*url*/'Boutons/Forum2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Forum"></a></td>
<td valign="top" style="border-right-style: solid; border-right-width: 1px; border-bottom-style: solid; border-bottom-width: 1px; border-top-style:solid; border-top-width:1px" bgcolor="#CC0000" width="179">
<!-- MSCellType="ContentHead" -->
<p align="center">
<a href="Contactez-nous.php">
<img border="0" id="img159" src="Boutons/ContactezNous1.gif" height="25" width="179" alt="Contactez-nous" onmouseover="FP_swapImg(1,0,/*id*/'img159',/*url*/'Boutons/ContactezNous2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img159',/*url*/'Boutons/ContactezNous1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img159',/*url*/'Boutons/ContactezNous3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img159',/*url*/'Boutons/ContactezNous2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Contactez-nous"></a></td>
<td valign="top" style="border-right-style: solid; border-right-width: 1px; border-bottom-style: solid; border-bottom-width: 1px; border-top-style:solid; border-top-width:1px" bgcolor="#CC0000" width="179">
<!-- MSCellType="ContentHead" -->
<p align="center">
<a href="Fiche_du_club.html">
<img border="0" id="img160" src="Boutons/FicheDuClub1.gif" height="25" width="179" alt="Fiche du club" onmouseover="FP_swapImg(1,0,/*id*/'img160',/*url*/'Boutons/FicheDuClub2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img160',/*url*/'Boutons/FicheDuClub1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img160',/*url*/'Boutons/FicheDuClub3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img160',/*url*/'Boutons/FicheDuClub2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Fiche du club"></a></td>
<td valign="top" style="border-right-style: solid; border-right-width: 1px; border-bottom-style: solid; border-bottom-width: 1px; border-top-style:solid; border-top-width:1px" bgcolor="#CC0000">
<!-- MSCellType="ContentHead" -->
<p align="center">
<a href="Liens.html">
<img border="0" id="img161" src="Boutons/Liens1.gif" height="25" width="179" alt="Liens" onmouseover="FP_swapImg(1,0,/*id*/'img161',/*url*/'Boutons/Liens2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img161',/*url*/'Boutons/Liens1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img161',/*url*/'Boutons/Liens3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img161',/*url*/'Boutons/Liens2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Liens"></a></td>
<td height="27"></td>
</tr>
<tr>
<td valign="top" style="border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px; " bgcolor="#CC0000">
<!-- MSCellType="NavBody" -->
<div align="center">
<table border="0" width="100%" id="table25" cellspacing="0" cellpadding="0">
<tr>
<td align="center">
<div style="border-bottom: 1px solid #FFFFFF">
<a href="Equipe_premiere.html">
<img border="0" id="img162" src="Boutons/EquipePremiere1.gif" height="25" width="178" alt="Equipe première" onmouseover="FP_swapImg(1,0,/*id*/'img162',/*url*/'Boutons/EquipePremiere2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img162',/*url*/'Boutons/EquipePremiere1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img162',/*url*/'Boutons/EquipePremiere3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img162',/*url*/'Boutons/EquipePremiere2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Equipe première"></a></div>
</td>
</tr>
<tr>
<td align="center">
<div style="border-bottom: 1px solid #FFFFFF">
<a href="Calendrier.html">
<img border="0" id="img163" src="Boutons/CalendrierPremiere1.gif" height="25" width="178" alt="Calendrier" onmouseover="FP_swapImg(1,0,/*id*/'img163',/*url*/'Boutons/CalendrierPremiere2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img163',/*url*/'Boutons/CalendrierPremiere1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img163',/*url*/'Boutons/CalendrierPremiere3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img163',/*url*/'Boutons/CalendrierPremiere2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Calendrier"></a></div>
</td>
</tr>
<tr>
<td align="center">
<div style="border-bottom: 1px solid #FFFFFF">
<a href="Equipe_reserve.html">
<img border="0" id="img164" src="Boutons/EquipeReserve1.gif" height="25" width="178" alt="Equipe réserve" onmouseover="FP_swapImg(1,0,/*id*/'img164',/*url*/'Boutons/EquipeReserve2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img164',/*url*/'Boutons/EquipeReserve1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img164',/*url*/'Boutons/EquipeReserve3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img164',/*url*/'Boutons/EquipeReserve2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Equipe réserve"></a></div>
</td>
</tr>
<tr>
<td align="center">
<div style="border-bottom: 1px solid #FFFFFF">
<a href="Equipes_d'ages.html">
<img border="0" id="img170" src="Boutons/EquipesDages1.gif" height="25" width="178" alt="Equipes d'âges" onmouseover="FP_swapImg(1,0,/*id*/'img170',/*url*/'Boutons/EquipesDages2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img170',/*url*/'Boutons/EquipesDages1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img170',/*url*/'Boutons/EquipesDages3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img170',/*url*/'Boutons/EquipesDages2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Equipes d'âges"></a></div>
</td>
</tr>
<tr>
<td align="center">
<div style="border-bottom: 1px solid #FFFFFF">
<a href="Le_club.html">
<img border="0" id="img166" src="Boutons/LeClub1.gif" height="25" width="178" alt="Le club" onmouseover="FP_swapImg(1,0,/*id*/'img166',/*url*/'Boutons/LeClub2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img166',/*url*/'Boutons/LeClub1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img166',/*url*/'Boutons/LeClub3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img166',/*url*/'Boutons/LeClub2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Le club"></a></div>
</td>
</tr>
<tr>
<td align="center">
<div style="border-bottom: 1px solid #FFFFFF">
<a href="Supporters.html">
<img border="0" id="img167" src="Boutons/Supporters1.gif" height="25" width="178" alt="Supporters" onmouseover="FP_swapImg(1,0,/*id*/'img167',/*url*/'Boutons/Supporters2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img167',/*url*/'Boutons/Supporters1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img167',/*url*/'Boutons/Supporters3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img167',/*url*/'Boutons/Supporters2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Supporters"></a></div>
</td>
</tr>
<tr>
<td align="center">
<div style="border-bottom: 1px solid #FFFFFF">
<a href="Loi_football.html">
<img border="0" id="img168" src="Boutons/LoiFootball1.gif" height="25" width="178" alt="Loi football" onmouseover="FP_swapImg(1,0,/*id*/'img168',/*url*/'Boutons/LoiFootball2.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img168',/*url*/'Boutons/LoiFootball1.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img168',/*url*/'Boutons/LoiFootball3.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img168',/*url*/'Boutons/LoiFootball2.gif')" fp-style="fp-btn: Soft Rectangle 10; fp-font: Verdana; fp-font-style: Bold; fp-font-size: 10; fp-font-color-normal: #FFFFFF; fp-font-color-hover: #000066; fp-font-color-press: #000066; fp-transparent: 1; fp-proportional: 0" fp-title="Loi football"></a></div>
</td>
</tr>
</table>
</div>
</td>
<td valign="top" style="border-bottom-style: solid; border-bottom-width: 1px; border-right-style:solid; border-right-width:1px" bgcolor="#CC0000" colspan="3" rowspan="8">
<!-- MSCellType="ContentBody" -->
<div align="center">
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Le calendrier 2012-2013 de la
D3 B est maintenant connu !</font></b></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF"><a href="Calendrier.html">
<font color="#FFFF00">Consultez-le ici</font></a></font></p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">
__________________________________________________________________</font></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Agenda des rencontres de
préparation de notre équipe première</font></b></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">21/07 - 18:00</font></p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">à Villance</font></p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Bertrix - Wiltz (D1 Lux)</font></b></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">22/07 - 17:00</font></p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">à Bohan</font></p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Bertrix - Walhain (Prom)</font></b></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">25/07 - 20:00</font></p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Bièvre (Prom) - Bertrix</font></b></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">29/07 - 16:00</font></p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">à Junglister (GDL)</font></p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Pétange (D1 Lux) - Bertrix</font></b></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">05/08 - 16:00</font></p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Bogny/Meuse (DH Fra) - Bertrix</font></b></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">08/08 - 20:00</font></p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Sedan (D2 Fra) - Bertrix</font></b></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">
__________________________________________________________________</font></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<table cellpadding="0" cellspacing="0" width="520" height="20" id="table759">
<!-- MSTableType="layout" -->
<tr>
<td align="center">
<p style="margin-top: 0; margin-bottom: 0">
<img border="0" src="Match_gala.png" width="520" height="350"></td>
</tr>
</table>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">
__________________________________________________________________</font></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<table cellpadding="0" cellspacing="0" width="520" height="20" id="table758">
<!-- MSTableType="layout" -->
<tr>
<td width="520" height="20" valign="top">
<p align="center"><b>
<font face="Verdana" color="#FFFFFF">La Royale
Entente Bertrigeoise cherche</font></b></p>
<p align="center"><b>
<font face="Verdana" color="#FFFFFF"> un
Responsable Matériel</font></b></p>
<p align="center"><b>
<font face="Verdana" color="#FFFFFF" size="2">
Si vous êtes intéressé, merci de contacter
Patrice Laime au :</font></b></p>
<p align="center" style="margin-top: 0; margin-bottom: 0">
<b>
<font face="Verdana" size="2" color="#FFFFFF">
0479/80.69.75.</font></b></p></td>
</tr>
</table>
<p style="margin-top: 0; margin-bottom: 0">
</p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">
__________________________________________________________________</font></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<table cellpadding="0" cellspacing="0" width="300" height="61" id="table753">
<!-- MSTableType="layout" -->
<tr>
<td align="center">
<p style="margin-top: 0; margin-bottom: 0">
<img border="0" src="Logos/Logo_Bertrix_Net.png" width="40" height="40"></td>
<td align="center" rowspan="2" width="60">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="4" color="#FFFF00">1 - 1</font></b></td>
<td align="center" height="40">
<p style="margin-top: 0; margin-bottom: 0">
<img border="0" src="Logos/Logo_La_Louviere_Centre.gif" width="28" height="40"></td>
</tr>
<tr>
<td align="center" width="120">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">Bertrix</font></b></td>
<td align="center" height="21" width="120">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFFFF">La Louvière</font></b></td>
</tr>
</table>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" color="#FFFF00" size="4">BERTRIX RESTE EN D3</font></b></p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">En effet, a égalité de points
et de victoires avec le FC Bleid, nous </font></p>
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">restons devant les panis à la
différence de buts.</font></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<table cellpadding="0" cellspacing="0" width="520" height="105" id="table754">
<!-- MSTableType="layout" -->
<tr>
<td height="25" valign="top" colspan="5">
<p style="margin-top: 0; margin-bottom: 0">
<u><b><font face="Verdana" size="2" color="#FFFFFF">Les autres
rencontres de la 34ème journée en DIII A</font></b></u></td>
</tr>
<tr>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">Tournai - Deinze
</font></td>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFF00">0-1</font></b></td>
<td valign="top">
</td>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">Torhout - Virton</font></td>
<td valign="top" height="20">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFF00">3-2</font></b></td>
</tr>
<tr>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">Bleid - Renaix</font></td>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFF00">4-2</font></b></td>
<td valign="top">
</td>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">Oudenaarde - Ath</font></td>
<td valign="top" height="20">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFF00">2-3</font></b></td>
</tr>
<tr>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">Heppignies - Verviers</font></td>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFF00">1-2</font></b></td>
<td valign="top">
</td>
<td valign="top">
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">Huy - Brakel</font></td>
<td valign="top" height="20">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFF00">1-1</font></b></td>
</tr>
<tr>
<td width="210" valign="top">
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">Coxyde - Mouscron</font></td>
<td valign="top" width="40">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFF00">3-7</font></b></td>
<td width="20" valign="top">
</td>
<td width="210" valign="top">
<p style="margin-top: 0; margin-bottom: 0">
<font face="Verdana" size="2" color="#FFFFFF">Waregem - O. Charleroi</font></td>
<td valign="top" height="20" width="40">
<p style="margin-top: 0; margin-bottom: 0"><b>
<font face="Verdana" size="2" color="#FFFF00">5-0 ff</font></b></td>
</tr>
</table>
<p style="margin-top: 0; margin-bottom: 0">
</p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">
</p>
</div></td>
<td valign="top" rowspan="4" style="border-right-style: solid; border-right-width: 1px; border-bottom-style: solid; border-bottom-width: 1px" bgcolor="#C0C0C0" background="Fonds%20d'ecran/Fond_Ecran_Matchs_a_venir.jpg">
<!-- MSCellType="NavBody2" -->
<table border="1" width="100%" style="border-width: 0px">
<tr>
<td style="border-style: none; border-width: medium" colspan="2">
<p align="center"> <span id ="texteDate" style="font-family: Verdana; font-size: 10px; color=#FFFFFF; font-weight:bold;"></span></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" colspan="2">
<div style="border-bottom: 1px solid #FFFFFF">
<p align="center"><b>
<font face="Verdana" size="2" color="#FFFF00">MATCHS A
VENIR</font></b></div>
</td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" rowspan="3" align="center" width="34%">
<table border="1" width="53" id="table21" cellspacing="0" bgcolor="#CC0000" cellpadding="3" bordercolorlight="#FFFFFF" bordercolordark="#FFFFFF" style="border-width: 0px">
<tr>
<td width="43" align="center">
<p style="margin-top: 0; margin-bottom: 0">
<b><font face="Verdana" size="2" color="#FFFFFF">27-06</font></b></p>
<p style="margin-top: 0; margin-bottom: 0">
<span style="background-color: #FFFFFF"><b>
<font face="Verdana" size="2">19</font></b></span><font color="#000000" size="2" face="Verdana"><b><span style="background-color: #FFFFFF">:30</span></b></font></td>
</tr>
</table></td>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<font face="Verdana" size="2" color="#FFFFFF">Neuvillers
(P2)</font></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<b><font face="Verdana" size="2" color="#FFFF00">0 - 10</font></b></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<b><font face="Verdana" size="2" color="#FFFFFF">Bertrix</font></b></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" colspan="2">
<div style="border-bottom: 1px solid #FFFFFF">
<p style="margin-top: 6px; margin-bottom: 6px" align="left">
<font face="Verdana" style="font-size: 6pt" color="#00FFFF">
Rencontre amicale</font></div>
</td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" rowspan="3" align="center" width="34%">
<table border="1" width="53" id="table22" cellspacing="0" bgcolor="#CC0000" cellpadding="3" bordercolorlight="#FFFFFF" bordercolordark="#FFFFFF" style="border-width: 0px">
<tr>
<td width="43" align="center">
<p style="margin-top: 0; margin-bottom: 0">
<b><font face="Verdana" size="2" color="#FFFFFF">06-05</font></b></p>
<p style="margin-top: 0; margin-bottom: 0">
<span style="background-color: #FFFFFF"><b>
<font face="Verdana" size="2">15</font></b></span><font color="#000000" size="2" face="Verdana"><b><span style="background-color: #FFFFFF">:00</span></b></font></td>
</tr>
</table></td>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<b><font face="Verdana" size="2" color="#FFFFFF">Bertrix</font></b></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<b><font face="Verdana" size="2" color="#FFFF00">1 - 1</font></b></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<font face="Verdana" size="2">
<a href="http://www.urlc.be/"><font color="#FFFFFF">La
Louvière</font></a></font></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" colspan="2">
<div style="border-bottom: 1px solid #FFFFFF">
<p style="margin-top: 6px; margin-bottom: 6px" align="left">
<font face="Verdana" style="font-size: 6pt" color="#00FFFF">
Championnat - Journée 34</font></div>
</td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" rowspan="3" align="center" width="34%">
<table border="1" width="53" id="table103" cellspacing="0" bgcolor="#CC0000" cellpadding="3" bordercolorlight="#FFFFFF" bordercolordark="#FFFFFF" style="border-width: 0px">
<tr>
<td width="43" align="center">
<p style="margin-top: 0; margin-bottom: 0">
<b><font face="Verdana" size="2" color="#FFFFFF">29-04</font></b></p>
<p style="margin-top: 0; margin-bottom: 0">
<span style="background-color: #FFFFFF"><b>
<font face="Verdana" size="2">15</font></b></span><font color="#000000" size="2" face="Verdana"><b><span style="background-color: #FFFFFF">:00</span></b></font></td>
</tr>
</table></td>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<a href="https://www.ksk-ronse.be/">
<font color="#FFFFFF" face="Verdana" size="2">Renaix</font></a></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<b><font face="Verdana" size="2" color="#FFFF00">3 - 1</font></b></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" width="60%">
<b><font face="Verdana" size="2" color="#FFFFFF">Bertrix</font></b></td>
</tr>
<tr>
<td style="border-style: none; border-width: medium" align="center" colspan="2">
<div>
<p align="left" style="margin-top: 6px; margin-bottom: 6px">
<font face="Verdana" style="font-size: 6pt" color="#00FFFF">
Championnat - Journée 33</font></div>
</td>
</tr>
</table>
</td>
<td height="182"></td>
</tr>
<tr>
<td style="border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px; border-bottom-style:solid; border-bottom-width:1px" bgcolor="#FFFFFF" align="center">
<!-- MSCellType="NavBody" -->
<b><font face="Verdana" size="2">Merci à nos partenaires</font></b></td>
<td height="17"></td>
</tr>
<tr>
<td style="border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px; border-bottom-style:solid; border-bottom-width:1px" bgcolor="#CC0000" align="center">
<!-- MSCellType="NavBody" -->
<p align="center">
<img border="0" src="Images/Diapo.gif" width="178" height="105"></td>
<td height="106"></td>
</tr>
<tr>
<td style="border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px; border-bottom-style: solid; border-bottom-width: 1px" bgcolor="#FFFFFF" align="center" rowspan="2">
<!-- MSCellType="NavBody" -->
<b><font face="Verdana" size="2" color="#FF0000">
<a href="Formulaire.html"><font color="#FF0000">
<a href="Sponsoring.html"><font color="#FF0000">Votre publicité ici
?</font></a></font></a></font></b></td>
<td height="2"></td>
</tr>
<tr>
<td valign="top" style="border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px" rowspan="2">
<a href="http://football-regional.sudpresse.be/live/index.php?compet=BE_D3A">
<img border="0" src="Images/MatchEnDirectD3A.jpg" width="179" height="64"></a></td>
<td height="15"></td>
</tr>
<tr>
<td valign="top" style="border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px; border-bottom-style: solid; border-bottom-width: 1px" bgcolor="#CC0000" width="178" rowspan="3">
<!-- MSCellType="NavBody" -->
</td>
<td height="49"></td>
</tr>
<tr>
<td bgcolor="#CC0000" style="border-right-style: solid; border-right-width: 1px; border-bottom-style: solid; border-bottom-width: 1px" align="center" background="Fonds%20d'ecran/Fond_Classement_Accueil.jpg">
<table border="1" width="100%" id="table109" style="border-width: 0px">
<tr>
<td style="border-style: none; border-width: medium">
<p align="center" style="margin-top: 0; margin-bottom: 0">
<span style="font-weight: 700">
<font face="Verdana" style="font-size: 7pt">
<a href="Calendrier_complet.html"><font color="#FFFF00">
Calendrier complet</font></a></font></span></p>
<p align="center" style="margin-top: 0; margin-bottom: 0">
<span style="font-weight: 700">
<font face="Verdana" size="2">Classement au 00/00</font></span></p>
<p align="center" style="margin-top: 0; margin-bottom: 0">
<span style="font-weight: 700">
<font face="Verdana" style="font-size: 7pt" color="#FF0000">
<a href="Classement_complet.html"><font color="#FF0000">Consultez le
classement complet</font></a></font></span></td>
</tr>
</table>
<table x:str border="0" cellpadding="0" cellspacing="0" width="172" style="border-collapse:
collapse;width:129pt" id="table750">
<colgroup>
<col width="24" style="width: 18pt">
<col width="4" style="width: 3pt">
<col width="113" style="width: 85pt">
</colgroup>
<tr height="19" style="height: 14.25pt">
<td height="19" align="right" width="24" style="height: 14.25pt; width: 18pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border: .5pt solid gray; padding: 0px" x:num>
1</td>
<td width="4" style="width: 3pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: medium none; border-top: .5pt solid gray; border-bottom: .5pt solid gray; padding: 0px">
</td>
<td width="113" style="width: 85pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: .5pt solid gray; border-bottom: .5pt solid gray; padding: 0px">
Ath</td>
<td width="31" style="width: 23pt; font-weight: 700; font-family: Verdana, sans-serif; text-align: center; color: windowtext; font-size: 10.0pt; font-style: normal; text-decoration: none; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: .5pt solid gray; border-bottom: .5pt solid gray; padding: 0px" x:num>
00</td>
</tr>
<tr height="19" style="height: 14.25pt">
<td height="19" align="right" style="height: 14.25pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: .5pt solid gray; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
2</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: medium none; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
<b><font color="#0000FF">Bertrix</font></b></td>
<td style="font-weight: 700; font-family: Verdana, sans-serif; text-align: center; color: windowtext; font-size: 10.0pt; font-style: normal; text-decoration: none; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
00</td>
</tr>
<tr height="19" style="height: 14.25pt">
<td height="19" align="right" style="height: 14.25pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: .5pt solid gray; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
3</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: medium none; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
Bocholt</td>
<td style="font-weight: 700; font-family: Verdana, sans-serif; text-align: center; color: windowtext; font-size: 10.0pt; font-style: normal; text-decoration: none; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
00</td>
</tr>
<tr height="19" style="height: 14.25pt">
<td height="19" align="right" style="height: 14.25pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: .5pt solid gray; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
4</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: medium none; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
Ciney</td>
<td style="font-weight: 700; font-family: Verdana, sans-serif; text-align: center; color: windowtext; font-size: 10.0pt; font-style: normal; text-decoration: none; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
00</td>
</tr>
<tr height="19" style="height: 14.25pt">
<td height="19" align="right" style="height: 14.25pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: .5pt solid gray; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
5</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: medium none; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
Dender</td>
<td style="font-weight: 700; font-family: Verdana, sans-serif; text-align: center; color: windowtext; font-size: 10.0pt; font-style: normal; text-decoration: none; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
00</td>
</tr>
<tr height="19" style="height: 14.25pt">
<td height="19" align="right" style="height: 14.25pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: .5pt solid gray; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
6</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: medium none; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
Diegem</td>
<td style="font-weight: 700; font-family: Verdana, sans-serif; text-align: center; color: windowtext; font-size: 10.0pt; font-style: normal; text-decoration: none; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
00</td>
</tr>
<tr height="19" style="height: 14.25pt">
<td height="19" align="right" style="height: 14.25pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: .5pt solid gray; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
7</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: medium none; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
Grimbergen</td>
<td style="font-weight: 700; font-family: Verdana, sans-serif; text-align: center; color: windowtext; font-size: 10.0pt; font-style: normal; text-decoration: none; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
00</td>
</tr>
<tr height="19" style="height: 14.25pt">
<td height="19" align="right" style="height: 14.25pt; font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: .5pt solid gray; border-right: .5pt solid gray; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px" x:num>
8</td>
<td style="font-family: Verdana, sans-serif; color: windowtext; font-size: 10.0pt; font-weight: 400; font-style: normal; text-decoration: none; text-align: general; vertical-align: bottom; white-space: nowrap; border-left: medium none; border-right: medium none; border-top: medium none; border-bottom: .5pt solid gray; padding: 0px">
</td>
<td style="
Re,
J'ai pas creusé à fond, un peu quand même, et je suis surpris de voir
J'ai pas creusé à fond, un peu quand même, et je suis surpris de voir
<span id="texteDate" style="font-family: Verdana; font-size: 10px; color=#FFFFFF; font-weight:bold;">Vendredi 27 Juil. - 23:03:01</span>pour moi, ce devrait être
color: #FFFFFF;vraisemblablement IE, avec ses bogues, accepte cette écriture erronée et pas Firefox qui prend donc #000000 (noir) au lieu de #FFFFFF (blanc).
Yes, ça marche, merci beaucoup pour ton aide.
Par contre, j'ai toujours le problème des espaces :
voici mon site : wwww.rebertrix.be
Quand je l'ouvre avec IE je n'ai pas les espaces dans mes colonnes de gauche et de droite alors que je les ai avec firefox.
Encore merci pour ton aide.
Par contre, j'ai toujours le problème des espaces :
voici mon site : wwww.rebertrix.be
Quand je l'ouvre avec IE je n'ai pas les espaces dans mes colonnes de gauche et de droite alors que je les ai avec firefox.
Encore merci pour ton aide.
Re,
Effectivement, la largeur de la page m'a l'air très variable; avec Chrome : ~900px; IE 8 : ~1126px; IE 7 : ~1123px; Opera : ~1086px; FF : 1123/1125px.
La bannière faisant 900px, je suppose que ce devrait être la largeur de la page. J'ai pas trop le temps de chercher plus, mais bien que 902 soit défini pour width de la table, FF se recalcule 1123px, pour une raison qui ne me saute pas aux yeux.
Sinon, c'est bien ton site : efficace et pas bêcheur.
Effectivement, la largeur de la page m'a l'air très variable; avec Chrome : ~900px; IE 8 : ~1126px; IE 7 : ~1123px; Opera : ~1086px; FF : 1123/1125px.
La bannière faisant 900px, je suppose que ce devrait être la largeur de la page. J'ai pas trop le temps de chercher plus, mais bien que 902 soit défini pour width de la table, FF se recalcule 1123px, pour une raison qui ne me saute pas aux yeux.
Sinon, c'est bien ton site : efficace et pas bêcheur.