<!--Begin Template: header --> <!--Powered By XMB 1.6 Magic Lantern Final Edition--> <!--Developed By Aventure Media & The XMB Group--> <!--www.aventure-media.co.uk--> <!--www.xmbforum.com--> <!--Do Not remove These Headers--> <html> <head> <!--Begin Template: css --> <style type="text/css">   body { scrollbar-base-color: #8A9AAD; scrollbar-arrow-color: #456281; }   a { color: #000000; text-decoration: none; }   a:hover { text-decoration: underline; }   .subject { font-size: 10px; font-family: Verdana; font-weight: bold; }   .post { font-size: 12px; font-weight: normal; font-family: Verdana; }   .header { color: #FFFFFF; background-color: #456281; font-family: Verdana; font-weight: bold; font-size: 10px; }   .header2 { background-color: #8A9AAD; font-family: Verdana; font-weight: bold; font-size: 11px; }   .category { background-color: #456281; font-family: Verdana; font-size: 10px; }   .tablerow { font-family: Verdana; color: #000000; font-size: 10px; }   .nav { font-family: Verdana; font-weight: bold; font-size: 10px; }   .smalltxt { font-size: 9px; font-family: Verdana; }   .mediumtxt { font-size: 10px; font-family: Verdana; font-weight: normal; color: #000000; }   .navtd { font-size: 11px; font-family: Verdana; color: #FFFFFF; background-color: #456281; text-decoration: none; }  .navtdx { font-size: 11px; font-family: Verdana; color: #FF9933; background-color: #456281; text-decoration: none; }  .multi { font-family: verdana; font-size: 11px; }   textarea, select, input, object { font-family: Verdana, arial, helvetica, sans-serif;  font-size: 12px;  font-weight: normal;  background-color: #8A9AAD;  color: #000000;  } </style> <!-- End Template: css --> <script language="JavaScript">  function Popup(url, window_name, window_width, window_height)  { settings=  "toolbar=no,location=no,directories=no,"+  "status=no,menubar=no,scrollbars=yes,"+  "resizable=yes,width="+window_width+",height="+window_height;    NewWindow=window.open(url,window_name,settings); }   function icon(theicon) {  document.input.message.value += theicon;  document.input.message.focus();  }  </script> <script type="text/javascript" language=JavaScript><!--Begin Template: functions_bbcode --> defmode = "normalmode"; // default mode. either normalmode, advmode, or helpmode   if (defmode == "advmode") {         helpmode = false;         normalmode = false;         advmode = true; } else if (defmode == "helpmode") {         helpmode = true;         normalmode = false;         advmode = false; } else {         helpmode = false;         normalmode = true;         advmode = false; } function chmode(swtch){         if (swtch == 1){                 advmode = false;                 normalmode = false;                 helpmode = true;                 alert("Mode dbutant\nCliquer sur un bouton d'dition pour en obtenir la description et les instructions.");         } else if (swtch == 0) {                 helpmode = false;                 normalmode = false;                 advmode = true;                 alert("Mode avanc\nLe Code BB sera insr directement lorsque vous cliquerez un bouton d'dition.");         } else if (swtch == 2) {                 helpmode = false;                 advmode = false;                 normalmode = true;                 alert("Mode normal\nDes popups vous indiquerons pas  pas comment insrer du Code BB.");         } }   function AddText(NewCode) {         if(document.all){         insertAtCaret(document.input.message,NewCode);         setfocus();         }else{         document.input.message.value+=NewCode;         setfocus();         } } function storeCaret (textEl){         if(textEl.createTextRange){                 textEl.caretPos = document.selection.createRange().duplicate();         } }   function insertAtCaret (textEl, text){         if (textEl.createTextRange && textEl.caretPos){                 var caretPos = textEl.caretPos;                 caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text;         }else{                 textEl.value  = text;         } }   function email() {         if (helpmode) {                 alert("Balise Email.\nChange une adresse Email en lien mailto.\nUsage: [email]quelquun@nimportequoi.com[/email]\nUsage: [email=quelquun@nimportequoi.com]Texte du lien[/email]");         } else if (advmode) {                 AddTxt="[email] [/email]";                 AddText(AddTxt);         } else {                  txt2=prompt("Entrer le nom  afficher.\nSi ce champs est vide l'adresse Email sera visible.","");                  if (txt2!=null) {                         txt=prompt("Entrez l'adresse Email.","name@domain.com");                               if (txt!=null) {                                 if (txt2=="") {                                         AddTxt="[email]"+txt+"[/email]";                                                  } else {                                         AddTxt="[email="+txt+"]"+txt2+"[/email]";                                 }                                  AddText(AddTxt);                                         }                 }         } }    function chsize(size) {         if (helpmode) {                 alert("0");         } else if (advmode) {                 AddTxt="[size="+size+"] [/size]";                 AddText(AddTxt);         } else {                                        txt=prompt("Entrez la taille dsire. "+size,"Text");                  if (txt!=null) {                                      AddTxt="[size="+size+"]"+txt+"[/size]";                         AddText(AddTxt);                 }                 } }   function chfont(font) {         if (helpmode){                 alert("0");         } else if (advmode) {                 AddTxt="[font="+font+"] [/font]";                 AddText(AddTxt);         } else {                                   txt=prompt("Entrez votre texte. "+font,"Text");                 if (txt!=null) {                                      AddTxt="[font="+font+"]"+txt+"[/font]";                         AddText(AddTxt);                 }                 }   }    function bold() {         if (helpmode) {                 alert("Balise Gras.\nPasse le texte en caractre gras.\nUsage: [b]Ceci est un texte en caractre gras.[/b]");         } else if (advmode) {                 AddTxt="[b] [/b]";                 AddText(AddTxt);         } else {                   txt=prompt("Entrez le texte  passer en gras.","Text");                      if (txt!=null) {                                    AddTxt="[b]"+txt+"[/b]";                         AddText(AddTxt);                 }                } }   function italicize() {         if (helpmode) {                 alert("Balise Italique.\nPasse le texte en caractre italique.\nUsage: [i]Ceci est un texte en caractre italique.[/i]");         } else if (advmode) {                 AddTxt="[i] [/i]";                 AddText(AddTxt);         } else {                    txt=prompt("Entrez le texte  passer en italique.","Text");                      if (txt!=null) {                                    AddTxt="[i]"+txt+"[/i]";                         AddText(AddTxt);                 }                        } }   function quote() {         if (helpmode){                 alert("Balise de citation.\nCite le texte pour faire rfrence  quelque chose de prcis, post auparavant.\nUsage: [quote]Ceci est une citation.[/quote]");         } else if (advmode) {                 AddTxt="\r[quote]\r[/quote]";                 AddText(AddTxt);         } else {                    txt=prompt("Entrez le texte  citer.","Text");                      if(txt!=null) {                                   AddTxt="\r[quote]\r"+txt+"\r[/quote]";                         AddText(AddTxt);                 }                        } }   function chcolor(color) {         if (helpmode) {                 alert("Balise de couleur\nModifie la couleur du texte. Toute couleur nomme peut etre utilise.\nUsage: [color="+color+"]Ceci est du texte "+color+"[/color]");         } else if (advmode) {                 AddTxt="[color="+color+"] [/color]";                 AddText(AddTxt);         } else {           txt=prompt("Entrez le texte  mettre en "+color,". "+color,"Text");                 if(txt!=null) {                         AddTxt="[color="+color+"]"+txt+"[/color]";                         AddText(AddTxt);                         }          } }   function center() {         if (helpmode) {                 alert("Balise de centrage.\nCentre le texte.\nUsage: [align=center]Ce texte est centr.[/align]");         } else if (advmode) {                 AddTxt="[align=center] [/align]";                 AddText(AddTxt);         } else {                   txt=prompt("Entrez le texte  centrer.","Text");                      if (txt!=null) {                                   AddTxt="\r[align=center]"+txt+"[/align]";                         AddText(AddTxt);                 }                       } }   function hyperlink() {         if (helpmode) {                 alert("Balise de lien hypertexte.\nTransforme une URL en lien hypertexte.\nUsage: [url]http://www.nimportequoi.com[/url]\nUsage: [url=http://www.nimportequoi.com]Texte du lien[/url]");         } else if (advmode) {                 AddTxt="[url] [/url]";                 AddText(AddTxt);         } else {                  txt2=prompt("Entrez le texte du lien.\nSi ce champs est vide le lien sera visible","");                  if (txt2!=null) {                         txt=prompt("Entrez l'URL pour le lien hypertexte.","http://");                               if (txt!=null) {                                 if (txt2=="") {                                         AddTxt="[url]"+txt+"[/url]";                                         AddText(AddTxt);                                 } else {                                         AddTxt="[url="+txt+"]"+txt2+"[/url]";                                         AddText(AddTxt);                                 }                                  }                  }         } }   function image() {         if (helpmode){                 alert("Balise d'image.\nInsre une image dans le message.\nUsage: [img]http://www.nimportequoi.com/image.gif[/img]");         } else if (advmode) {                 AddTxt="[img] [/img]";                 AddText(AddTxt);         } else {                   txt=prompt("Entrez l'adresse de l'image que vous souhaitez insrer.","http://");                     if(txt!=null) {                                     AddTxt="\r[img]"+txt+"[/img]";                         AddText(AddTxt);                 }                } }   function code() {         if (helpmode) {                 alert("Balise de code.\nCite le texte tout en en conservant exactement le format.\nUtile pour poster du code qui ne sera pas interprt.\nUsage: [code]Ceci est un texte format[/code]");         } else if (advmode) {                 AddTxt="\r[code]\r[/code]";                 AddText(AddTxt);         } else {                    txt=prompt("Entrez le code  citer.","");                      if (txt!=null) {                                   AddTxt="\r[code]"+txt+"[/code]";                         AddText(AddTxt);                 }                       } }   function list() {         if (helpmode) {                 alert("Balise de liste.\nCre une liste  puces, chiffres ou lettres.\nUsage: [list]\n[*]ligne1\n[*]ligne2\n[*]ligne3\n[/list]");         } else if (advmode) {                 AddTxt="\r[list]\r[*]\r[*]\r[*]\r[/list]";                 AddText(AddTxt);         } else {                   txt=prompt("Prcisez le type de liste souhaite.\n ('A' pour une liste alphabetique, '1' pour une liste numrique.) Vous pouvez laisser ce champs vide.","");                                while ((txt!="") && (txt!="A") && (txt!="a") && (txt!="1") && (txt!=null)) {                         txt=prompt("ERREUR!\nLes seuls valeurs acceptes pour un type de liste sont 'A', '1' ou rien.","");                                }                 if (txt!=null) {                         if (txt=="") {                                 AddTxt="\r[list]\r\n";                         } else {                                 AddTxt="\r[list="+txt+"]\r";                         }                          txt="1";                         while ((txt!="") && (txt!=null)) {                                 txt=prompt("Ligne de la liste:\nLaisser vide pour terminer la liste.","");                                  if (txt!="") {                                                      AddTxt+="[*]"+txt+"\r";                                  }                                            }                          AddTxt+="[/list]\r\n";                         AddText(AddTxt);                  }         } }   function underline() {         if (helpmode) {                 alert("Balise de soulignage.\nSouligne le texte.\nUsage: [u]Ce texte est soulign.[/u]");         } else if (advmode) {                 AddTxt="[u] [/u]";                 AddText(AddTxt);         } else {                   txt=prompt("Entrez le texte  souligner.","Text");                      if (txt!=null) {                                    AddTxt="[u]"+txt+"[/u]";                         AddText(AddTxt);                 }                        } }   function setfocus() {         document.input.message.focus(); } <!-- End Template: functions_bbcode --></script> <title>Centre astrologique - powered by XMB</title> </head> <body bgcolor="#8896A7" text="#000000" background="/images/back.gif">   <!-----------------------------TETE--------------------------------> <!--webbot bot="HTMLMarkup" StartSpan --> <SCRIPT LANGUAGE="Javascript1.1" SRC="/commun/star2.js"> </SCRIPT> <!-----------------------------TETE--------------------------------> <div align="center"> <table border="0" width="600" cellpadding="0" cellspacing="0">   <tr>     <td width="100%" colspan="5"><img border="0" src="/images/top1.gif" WIDTH="600" HEIGHT="75"></td>   </tr>   <tr>     <td width="14" height="65" valign="middle" align="center"><img border="0" src="/images/tete1.GIF" WIDTH="14" HEIGHT="65"></td>     <td width="468" height="65" background="/images/tete2.GIF" valign="middle" align="center"> <!-----------------------------------tag-pub------------------------------------------------------>  <!-- Code BANDEAU 468x60 "INDEX" - NOUVEAU, doit remplacer l'ancien tag -->  <IFRAME SRC="http://pub2.branchez-vous.com/Astro/ads.cgi?iframe;zone=INDEX" MARGINWIDTH=0 MARGINHEIGHT=0 HSPACE=0 VSPACE=0 FRAMEBORDER=0 SCROLLING=NO WIDTH=468 HEIGHT=60> <A HREF="http://pub2.branchez-vous.com/Astro/ads.cgi?banner=NonSSI;page=01;zone=INDEX" TARGET="_blank"> <IMG SRC="http://pub2.branchez-vous.com/Astro/ads.cgi?page=01;zone=INDEX" WIDTH=468 HEIGHT=60 BORDER=0> </A> </IFRAME>  <!-- Fin du Code -->  <!-----------------------------------tag-pub------------------------------------------------------>      </td>     <td width="14" height="65" valign="middle" align="center"><img border="0" src="/images/tete3.GIF" WIDTH="14" HEIGHT="65"></td>     <td width="90" height="65" background="/images/tete4.GIF" valign="middle" align="center">  <IFRAME height=60 width=90 marginwidth=0 marginheight=0 hspace=0 vspace=0 frameborder=0 scrolling=no bordercolor="#000000" SRC="http://fl01.ct2.comclick.com/aff_frame.ct2?id_regie=1&num_editeur=237&num_site=1&num_emplacement=2"> <SCRIPT type="text/JavaScript" src="http://fl01.ct2.comclick.com/aff_js_src.ct2?id_regie=1&num_editeur=237&num_site=1&num_emplacement=2"> </SCRIPT> <NOSCRIPT> <A HREF="http://fl01.ct2.comclick.com/click_url.ct2?id_regie=1&num_editeur=237&num_site=1&num_emplacement=2" TARGET="_blank"> <IMG BORDER=0 SRC="http://fl01.ct2.comclick.com/aff_url.ct2?id_regie=1&num_editeur=237&num_site=1&num_emplacement=2"></A> </NOSCRIPT> </IFRAME>      </td>     <td width="14" height="65" valign="middle" align="center"><img border="0" src="/images/tete5.GIF" WIDTH="14" HEIGHT="65"></td>   </tr>   <tr>     <td width="600" valign="middle" align="left" colspan="5"><img border="0" src="/images/bottom.gif" WIDTH="600" HEIGHT="10"></td>   </tr>       <tr>       <td width="600" valign="middle" align="left" colspan="5"><img border="0" src="/images/dot.gif" width="600" height="5"></td>     </tr> </table> </div> <!-----------------------------TETE-FIN--------------------------->  <!---------------------------DEBUUT-CORP--------------------------> <div align="center">   <table border="0" width="600" cellspacing="0" cellpadding="0">     <tr>       <td width="100%"><img border="0" src="/images/dot.gif" width="600" height="5"></td>     </tr>     <tr>       <td width="100%"><img border="0" src="/images/top-c1.gif" width="600" height="10"></td>     </tr>   </table> </div> <!--------------------------DEBUUT-CORP-FIN----------------------->  <!--------------------------MILLIEU-CORP--------------------------> <div align="center">   <table border="0" width="600" cellspacing="0" cellpadding="0">     <tr>             <td width="10" background="/images/corps31.gif">&nbsp;          </td>       <td width="580" valign="top">        <!-----text-centrale--->          <table border="0" width="100%" bgcolor="#6C7D92">           <tr>             <td width="100%" align="center" valign="top" bgcolor="#6C7D92"> 	    <!-Francis->    <table cellspacing="0" cellpadding="0" border="0" width="98%" align="center">  <tr><td bgcolor="#000000">   <table border="0" cellspacing="1" cellpadding="6" width="100%"> <tr><td width="74%" bgcolor="#6C7D92"> <table border="0" width="100%" cellpadding="0" cellspacing="0"> <tr><td align="left" valign="top" rowspan="2"><a href="index.php"><!img src="images/xmbforum/" alt="Centre astrologique" border="0" /></a><br /></td><td align="right" valign="top"><font class="smalltxt">Dernier message : Jamais<br /></font></tr> <tr> <td align="right" valign="bottom"><font class="smalltxt"> Vous n'tes pas connect. [<a href="misc.php?action=login">Connexion</a> - <a href="member.php?action=reg"><b>Inscription</b></a>]</font></td></tr></table> </td></tr>   <tr><td class="navtd">  <table width="100%" cellpadding="0" cellspacing="0"><tr><td class="navtd"><a href="misc.php?action=list"><font class="navtd">Liste des membres</a> |</font> <a href="misc.php?action=search"><font class="navtd">Recherche</a> |</font> <a href="faq.php"><font class="navtd">FAQ</a> |</font> <a href="today.php"><font class="navtd">Sujets du jour</a> |</font> <a href="stats.php?action=view"><font class="navtd">Stats</a> |</font> </td> <td align="right"><a href="http://www.astro.qc.ca/"><font class="navtd">Retour vers: www.astro.qc.ca</font></a></td></tr>  <tr> <td colspan="2" class="navtd"><br> <a href="/horoscopes/">Horoscope</a> | <a href="/ascendant/">Ascendant</a> | <a href="/zodiaque/">Zodiaque</a> | <a href="/chinois/">Chinois</a> | <a href="/biorythme/">Biorythmes</a> | <a href="/cartes/">Oracles</a> | <a href="/quiz/">Quiz</a> |      </td> </tr>  </table>  </td></tr></table>   </td></tr></table>   <table cellspacing="0" cellpadding="1" border="0" width="98%" align="center">  <tr> <td> <table width="100%" cellspacing="0" cellpadding="2" border="0" align="center"> <tr> <td class="nav">&nbsp;<a href="index.php">Centre astrologique</a> &raquo; Profil </td> <td align="right"> <a href="#bottom"><img src="images/xmbforum/arrow_dw.gif" border="0"></a> </td>         </tr> </table> </td> </tr> </table> <br> <!-- End Template: header --><!--Begin Template: member_profile --> <table cellspacing="0" cellpadding="0" border="0" width="98%" align="center"> <tr><td bgcolor="#000000">   <table border="0" cellspacing="1" cellpadding="4" width="100%"> <tr> <td colspan="2" class="header">Prfrences de tortue</td> </tr>   <tr><td bgcolor="#8A9AAD" width="22%" class="tablerow">Nom d'utilisateur</td> <td bgcolor="#6C7D92" class="tablerow">tortue&nbsp; <small>(<a href="#" onclick="Popup('u2u.php?action=send&username=tortue', 'Window', 550, 450);">Envoyer U2U</a>)&nbsp; (<a href="javascript:Popup('buddy.php?action=add&buddy=tortue', 'Window', 250, 300);">Ajouter aux Amis</a>) </small></td></tr>   <tr><td bgcolor="#8A9AAD" class="tablerow">Inscrit(e) le:</td> <td bgcolor="#6C7D92" class="tablerow">1/13/03 (0.86 messages par jour)</td></tr>   <tr><td bgcolor="#8A9AAD" class="tablerow">Rponses:</td> <td bgcolor="#6C7D92" class="tablerow">78 (0.31% de tous les messages.)</td></tr>   <tr><td bgcolor="#8A9AAD" class="tablerow">Avatar & Statut du membre:<br /><img src="http://images.google.ca/images?q=tbn:2at-aiB_Qn0C:www.virtualafghans.com/forum/avatar/girl" border="0" ></td> <td bgcolor="#6C7D92" class="tablerow">Member</td></tr>   <tr><td bgcolor="#8A9AAD" valign="top" class="tablerow">Dernier message:</td> <td bgcolor="#6C7D92" class="tablerow">14-4-2003  20:04</td></tr>      <tr><td bgcolor="#8A9AAD" class="tablerow">Site:</td> <td bgcolor="#6C7D92" class="tablerow"><a href="" target="blank"></a></td></tr>   <tr><td bgcolor="#8A9AAD" class="tablerow">Aim:</td> <td bgcolor="#6C7D92" class="tablerow"></td></tr>   <tr><td bgcolor="#8A9AAD" class="tablerow">ICQ:</td> <td bgcolor="#6C7D92" class="tablerow"></td></tr>   <tr><td bgcolor="#8A9AAD" class="tablerow">Yahoo:</td> <td bgcolor="#6C7D92" class="tablerow"></td></tr>   <tr><td bgcolor="#8A9AAD" class="tablerow">MSN:</td> <td bgcolor="#6C7D92" class="tablerow"></td></tr>   <tr><td bgcolor="#8A9AAD" class="tablerow">Lieu de rsidence:</td> <td bgcolor="#6C7D92" class="tablerow">Montreal</td></tr>   <tr><td bgcolor="#8A9AAD" class="tablerow">Anniversaire:</td> <td bgcolor="#6C7D92" class="tablerow"></td></tr>   <tr><td bgcolor="#8A9AAD" valign="top" class="tablerow">Bio:</td> <td bgcolor="#6C7D92" class="tablerow"></td></tr>  <tr><td bgcolor="#8A9AAD" valign="top" class="tablerow">Humeur:</td> <td bgcolor="#6C7D92" class="tablerow">bebe jajoue la</td></tr>  <tr> <td bgcolor="#8A9AAD" colspan="2" class="tablerow"><b><a href="misc.php?action=search&srchuname=tortue&searchsubmit=a&srchfid=all&srchfrom=0">Rechercher</a> tous les messages de cet utilisateur.</b><br>Options d'administration: <a href="editprofile.php?user=tortue">Edit Users Account</a></td> </tr> </table></td></tr></table>  <table><tr><td><table><tr><td></td></tr>   <!-- End Template: member_profile --></table></td></tr></table><!--Begin Template: footer --> <table cellspacing="0" cellpadding="1" border="0" width="98%" align="center" bgcolor="#8A9AAD">    <tr>       <td>             <table width="100%" cellspacing="0"  cellpadding="2">                    <tr>                         <td class="nav" bgcolor="#8A9AAD">&nbsp;<a href="index.php">Centre astrologique</a> &raquo; Profil                         </td>                         <td align="right" bgcolor="#8A9AAD"> <a href="#top"><img src="images/xmbforum/arrow_up.gif" border="0"></a>                        </td>                           </tr>            </table>        </td>    </tr> </table>     <table width="100%"> <tr> <td colspan="3"> <script LANGUAGE="JavaScript"> <!-- Begin function Start(page) { fenetreNote = window.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=no,resize=no,width=468,height=550"); } function Ban(page) { fenetreNote = window.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=no,resize=no,width=468,height=315"); } // End -->  </script>  <font color="#FFFFFF" face="arial" size="2"> <p align="center"><br><a href="/default.htm"><b>Accueil</b></a> | <a href="/horoscopes/quotidien.htm">Horoscopes</a> | <a href="/ascendant/index.htm"> Ascendant</a> | <a href="/numerologie/index.htm"> Numrologie</a> | <a href="/zodiaque/index.htm"> Zodiaque</a> | <a href="/concours/index.htm">Concours</a> | <a href="/esoterisme/index.htm"> sotrisme</a> |   <a href="/forum/default.htm"> Forum</a> | <a href="/chinois"> Chinois</a> | <a href="javascript:Start('/php/ref.php')">Dites-le</a> | <a href="javascript:Start('/php/mes.php')">Nous crire</a> | <a href="javascript:Ban('/php/ban.php')">Notre bannire</a> | <a href="/chat/">Chat!!!</a> | <a href="/partenaires/tous/">Partenariat</a><br><br> </font><font color="#FFFFFF" face="Tahoma" size="1"> </td> </tr> <tr> <td align="center">  <br>  </td>  <td valign="top">  <script language="JavaScript1.1"> <!-- hsh = new Date(); hsd = document; hsi = '<a href="http://www.xiti.com/xiti.asp?s=12353"'; hsi += ' TARGET="_top"><img width="39" height="25" border=0 '; hsi += 'src="http://loga.xiti.com/hit.xiti?s=12353'; hsi += '&p=<?print /xbm/member.php;?>'; hsi += '&hl=' + hsh.getHours() + 'x' + hsh.getMinutes() + 'x' + hsh.getSeconds(); if(parseFloat(navigator.appVersion)>=4) {Xiti_s=screen;hsi += '&r=' + Xiti_s.width + 'x' + Xiti_s.height + 'x' + Xiti_s.pixelDepth + 'x' + Xiti_s.colorDepth;} hsd.writeln(hsi + '&ref=' + hsd.referrer.replace('&', '$') + '" title="Mesurez votre audience"></a>'); //--> </script> <noscript> <a href="http://www.xiti.com/xiti.asp?s=12353" TARGET="_top"><img width="39" height="25" border=0 src="http://loga.xiti.com/hit.xiti?s=12353&p=&" title="Mesurez votre audience"></a> </noscript> <br> <A HREF="http://www.hit-parade.com/hp.asp?site=p10154" TARGET="_top"><IMG SRC="http://logp.hit-parade.com/logohp1.gif?site=p10154" ALT="Hit-Parade" WIDTH="77" HEIGHT="15" BORDER="0"></A> <br> </td> <td valign="middle"> <font color="#FFFFFF" face="arial" size="1"> Copyright 1997-2002 <br> Tous droits rservs au Centre Astrologique Michle Perras<br> Conu et administr par Exonet </font><br> </td> </tr> </table>   <!-francis-> </td></tr></table> <!-----text-centrale-fin--->                     </td>       <td width="10" background="/images/corps3.gif">&nbsp;</td>     </tr>    </table>  <div align="center">   <table border="0" width="600" cellspacing="0" cellpadding="0">     <tr>       <td width="100%"><img border="0" src="/images/bottom-c1.gif" width="600" height="9"></td>     </tr>   </table> </div>      </body> <a name=#bottom> <!-- End Template: footer --> 
