 <SCRIPT LANGUAGE="JAVASCRIPT">  //--------- Fonction qui teste si le champ est vide ou non function chaineVide(chaine) { 	var vide = true; 	var longueur = chaine.length; 	 	for (var i = 0; i < longueur; i++) { 		if (chaine.charAt(i) != " ") vide = false; 	} 	return vide; }  //--------- Fonction qui teste que dans le contenu du champs field il n'y a que les caractres qui sont dans chaineCaracteres function chaineValide(field, message) { 	var chaine = field.value; 	var valide = true; 	 	if (!chaineVide(chaine)) { 		var chaineCaracteres = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-' "; 		var longueur = chaine.length; 		for (var i = 0; i < longueur; i++) { 			if (chaineCaracteres.indexOf(chaine.charAt(i)) == -1) valide = false; 		} 	} 	 	if (!valide) { 		alert("Les donnes enregistres concernant\n" + message + " ne sont pas conformes,\nveuillez recommencer s'il vous plat."); 	} }   //--------- Fonction qui teste que dans le contenu du champs field il n'y a que des chiffres function entierValide(field, message) { 	var chaine = field.value; 	var valide = true; 	if (!chaineVide(chaine)) { 		var chaineCaracteres = "0123456789"; 		var longueur = chaine.length; 		for (var i = 0; i < longueur; i++) { 			if (chaineCaracteres.indexOf(chaine.charAt(i)) == -1) valide = false; 		} 	} 	if (!valide) { 		alert("Les donnes enregistres concernant\n" + message + " ne sont pas conformes,\nveuillez recommencer s'il vous plat."); 	} }  //--------- Fonction qui teste que dans le contenu du champs field il n'y a que des chiffres et que sa longueur est 4 ou 5 function codePostalValide(chaine) { 		 	var valide = true; 	var longueur = chaine.length; 	 	if (!chaineVide(chaine)) { 		if (longueur >= 4) { 			var chaineCaracteres = " 0123456789"; 			for (var i = 0; i < longueur; i++) { 				if (chaineCaracteres.indexOf(chaine.charAt(i)) == -1) valide = false; 			} 		} 		else { 			valide = false; 		} 	} 	 	return valide; 	//if (!valide) { 	//	alert("Les donnes enregistres concernant\nle code postal ne sont pas conformes,\nveuillez recommencer s'il vous plat."); 	//} }   //--------- Fonction qui teste que dans la chane il n'y a que les caractres "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'- " function chaineNormale(chaine) { 	var normale = true; 	var longueur = chaine.length; 	for (var i = 0; i < longueur; i++) { 		if ("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'- ".indexOf(chaine.charAt(i)) == -1) normale = false; 	} 	return normale; }   //--------- Fonction qui teste la validation d'une date function dateValide(jours, mois, annee) { 	var valide = true; 	var intjours = parseInt(jours, 10); 	var intmois = parseInt(mois, 10); 	var intannee = parseInt(annee, 10); 	 		 	var mydate =jours + mois + annee; 	var longueur = mydate.length; 	var chaineCaracteres = " 0123456789"; 	for (var i = 0; i < longueur; i++) { 		if (chaineCaracteres.indexOf(mydate.charAt(i)) == -1) valide = false; 	} 	 	if(jours.length==0) valide = false; 	if(mois.length==0) valide = false; 	if(annee.length!=4) valide = false;  	if (intmois < 1 || intmois > 12) { 		valide = false; 	} 	else 	{ 		if (intmois == 1 || intmois == 3 || intmois == 5 || intmois == 7 || intmois == 8 || intmois == 10 || intmois == 12) { 			if (intjours < 1 || intjours > 31) { 				valide = false; 			} 		} 		else if (intmois == 2) { 			if (intannee % 4 == 0) { 				 				if (intjours < 1 || intjours > 29) { 					valide = false; 				} 			} 			else { 				if (intjours < 1 || intjours > 28) { 					valide = false; 				} 			} 		} 		else if (intmois == 4 || intmois == 6 || intmois == 9 || intmois == 11) { 			if (intjours < 1 || intjours > 30) { 				valide = false; 			} 		} 	} 	return valide; }   //--------- Fonction qui teste le format du numro de tlphone //--------- Les caractres accepts sont " 0123456789-.()+" function formatTelephone(chaine) { 	var bonformat = true; 	var longueur = chaine.length; 	for (var i = 0; i < longueur; i++) { 		if (isNaN(chaine.charAt(i)) && chaine.charAt(i) != " " && chaine.charAt(i) != "." && chaine.charAt(i) != "-" && chaine.charAt(i) != "(" && chaine.charAt(i) != ")" && chaine.charAt(i) != "+") bonformat = false; 	} 	return bonformat; }   //--------- Fonction qui teste le format de l'adresse email function formatEmail(chaine) {  	var bonformat = true; 	var longueur = chaine.length; 	     if (chaine.indexOf("@") == -1 || chaine.charAt(0) == "@" || chaine.charAt(0) == "." || chaine.charAt(longueur - 1) == "@" || chaine.charAt(longueur - 1) == "." || chaine.indexOf("@@") != -1 || chaine.indexOf("..") != -1) { 		bonformat = false; 	} 	 	var nbArobas = 0 	for (var i = 0; i < longueur; i++) { 		if (chaine.charAt(i) == "@") nbArobas++; 	} 	if (nbArobas > 1) bonformat = false; 	 	return bonformat; }  function JSC_isEmail_String(str) { 	 	if (str.indexOf("'")!=-1)                                                   // "'" refus 		return false; 	if (str.indexOf(" ")!=-1)                                                   // " " refus 		return false; 	if (str.indexOf('"')!=-1)                                                   // '"' refus 		return false; 	if (str.indexOf("#")!=-1)                                                   // "#" refus 		return false; 	if (str.indexOf("(")!=-1)                                                   // "(" refus 		return false; 	if (str.indexOf(")")!=-1)                                                   // ")" refus 		return false; 	if (str.indexOf("/")!=-1)                                                   // "/" refus 		return false; 	if (str.indexOf("\\")!=-1)                                                  // "\" refus 		return false; 	if (str.indexOf("?")!=-1)                                                   // "?" refus 		return false; 	if (str.indexOf(":")!=-1)                                                   // ":" refus 		return false; 	if (str.indexOf(";")!=-1)                                                   // ";" refus 		return false; 	if (str.indexOf("+")!=-1)                                                   // "+" refus 		return false; 	if (str.indexOf("=")!=-1)                                                   // "=" refus 		return false; 	if (str.indexOf("<")!=-1)                                                   // "<" refus 		return false; 	if (str.indexOf(">")!=-1)                                                   // ">" refus 		return false; 	if (str.indexOf("*")!=-1)                                                   // "*" refus 		return false; 	if (str.indexOf("%")!=-1)                                                   // "%" refus 		return false; 	if (str.indexOf("&")!=-1)                                                   // "&" refus 		return false; 		 	if (str.indexOf(".@")!=-1)                                                  // "*.@*" refus 		return false; 	if (str.indexOf("@.")!=-1)                                                  // "*@.*" refus 		return false; 	if (".@".indexOf(str.charAt(0))!=-1)                                        // "@*" et ".*" refuss 		return false; 	if (".@".indexOf(str.charAt(str.length-1))!=-1)                             // "*@" et "*." refuss 		return false; 	if (str.search(/@.*@/g)!=-1)                                                // "*@*@*" et "*@@*" refuss 		return false; 	if (str.indexOf("..")!=-1)                                                  // "*..*" refus 		return false; 	if (str.search(/@.*\./g)==-1)                                               // On refuse s'il n'y a pas de point  droite de "@" 		return false; 	if (str.length>4+str.lastIndexOf("."))                                      // On refuse les extensions de plus de 3 caractres 		return false; 	return true; }  //--------- Fonction qui teste le format de l'adresse email function formatURL(chaine) { 	var bonformat = true; 	var longueur = chaine.length; 	     if  ( chaine.indexOf("http://") == -1 || chaine.indexOf(".") == -1) { 		bonformat = false; 	} 	return bonformat; }  //--------- Fonction qui teste le format PDF function formatPDF(chaine) { 	var bonformat = true; 	var longueur = chaine.length; 	if (chaine.substring(longueur-4,longueur) != ".pdf") { 		bonformat = false; 	} 	return bonformat; } //--------- Fonction qui teste le format gif / jpeg : .gif,.jpeg,.jpeg function formatPDF(chaine) { 	var bonformat = true; 	var longueur = chaine.length; 	if ((chaine.substring(longueur-4,longueur) != ".gif") &&(chaine.substring(longueur-5,longueur) != ".jpeg") && (chaine.substring(longueur-4,longueur) != ".jpg") ) { 		bonformat = false; 	} 	return bonformat; }  </SCRIPT>  <!-- TEST123 : D'abord, le chocolat est un aliment plaisir par excellence. Plaisir de l'il devant une tablette d'un noir profond et brillant, de l'odorat devant le parfum sublime du cacao, du go&ucirc;t enfin, o&ugrave; se m&ecirc;le l'amer et le sucr&eacute;, le croquant et le moelleux, l'&eacute;quilibre des textures et la longueur en bouche (on peut parler des crus de chocolat avec les m&ecirc;mes termes que pour les crus de grands vins !). <BR><BR>Ensuite, le chocolat est un <STRONG>aliment excellent pour la sant&eacute;</STRONG>, fait connu depuis longtemps (la premi&egrave;re th&egrave;se de doctorat en m&eacute;decine &eacute;crite sur ce sujet date de 1864 !). S'il est riche en glucides et en lipides, calorique (513 kcal pour 100 grammes de chocolat noir), il apporte n&eacute;anmoins du magn&eacute;sium, du potassium, du calcium, du fer, du cuivre et des antioxydants (qui sont des substances qui prot&eacute;geraient du cancer).<BR><BR>Enfin, si on craque pour le chocolat, c'est aussi parce qu'il apporte des substances psychostimulantes (cest-&agrave;-dire stimulantes du syst&egrave;me nerveux) comme la caf&eacute;ine, la th&eacute;obromine (un produit voisin de la caf&eacute;ine), la ph&eacute;nyl&eacute;thylamine (une substance se rapprochant des amph&eacute;tamines), le salsolinol (qui a une action antid&eacute;pressive, et m&ecirc;me une action proche des d&eacute;riv&eacute;s de l'opium), la tyramine et la s&eacute;rotonine (qui ont un effet antid&eacute;presseur) et l'anandamide (qui est ce que l'on appelle un cannabino&iuml;de, c'est-&agrave;-dire une substance proche du <A class=lienblu href=&quot;http://www.tasante.com/sous_rubrique/drogues/loi/Pages/cannabis.php?SousRub=9&quot; target=_blank>cannabis</A>).<BR><BR>C&eacute;l&egrave;bre pour ses qualit&eacute;s gustatives et sa valeur &eacute;nerg&eacute;tique, le chocolat pr&eacute;sente donc &eacute;galement des propri&eacute;t&eacute;s de stimulation psychique et physique, ainsi que des vertus anxiolytiques (qui calment <A class=lienblu href=&quot;http://www.tasante.com/rapidoc/lexique_resultats.php?intSCR_Mot=107&quot; target=_blank>lanxi&eacute;t&eacute;</A>). L'&eacute;tat de <A class=lienblu href=&quot;http://www.tasante.com/sous_rubrique/drogues/dependance/index.php?SousRub=10&quot; target=_blank>d&eacute;pendance </A>d&eacute;crit chez les &quot;chocolotomanes&quot;, qui consomment quotidiennement (et depuis des ann&eacute;es) 100 &agrave; 500 grammes de chocolat, am&egrave;ne &agrave; penser que la &quot;chocolotomanie&quot; pourrait bien &ecirc;tre une forme de toxicomanie douce, mais bien agr&eacute;able, sans effet n&eacute;gatif et  tout &agrave; fait l&eacute;gale !<BR><BR><STRONG>Pour en savoir plus</STRONG>, tu peux consulter :<BR><EM>Dictionnaire des drogues, des toxicomanies et des d&eacute;pendances</EM><BR>D. RICHARD et J.-L. SENON. Larousse 1999<BR><BR>Va voir sinon les sites Internet <A class=lienblu href=&quot;http://www.choco-club.com/&quot; target=_blank>Choco Club </A>et <A class=lienblu href=&quot;http://www.chocoland.com/&quot; target=_blank>Chocoland.com</A><BR><BR> -->  <html>  <head>  <script>  <!--          function Valide_Form() {                  var err = false ;                  var message = "";                  strCGI_Temoignage = window.document.temoignage.strCGI_Temoignage.value;                  if (strCGI_Temoignage == "" || chaineVide(strCGI_Temoignage)) {                          err = true;                          message = message + "- Vous devez remplir la zone de saisie tmoignage\n";                  }                  if (err ==  false) {                          window.document.temoignage.submit();                          window.close;                  } else {                          alert (message);                  }            }            function popUp(URL) {          day = new Date();          id = day.getTime();          eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0, scrollbars=1, location=0, statusbar=0, menubar=0, resizable=0, width=400, height=400, left = 376, top = 232');");          }  	function pop2(page,target,largeur,hauteur) 	{ 		featur="width=" + largeur + ",height=" + hauteur + ",scrollbars=0,left=0,top=0,screenX=0,screenY=0"; 		var w=window.open(page,target,featur); 	}          function ajoutFavori() {          browserName = navigator.appName;          browserVer = parseInt(navigator.appVersion);                  if (browserName == "Microsoft Internet Explorer" && browserVer >= 4) {                          window.external.AddFavorite(location.href, document.title);                  }          }  -->  </script>  <title>taSant&eacute;.com - Accroc au chocolat ?</title>    <script>  function popup(url, w, h, sc)  {  window.open(url, '', 'resizable=no,menubar=1,toolbar=1,location=1,scrollbars=' + sc + ',width=' + w + ',height=' + h);  }  </script>  <!-- <link rel=alternate media=print href="test.txt"> -->    <LINK REL=STYLESHEET TYPE="text/css" HREF="http://www.tasante.com/style.CSS">  </head>  <body bgcolor="#FFFFFF" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">  <table width="750" border="0" cellspacing="0" cellpadding="0">  <tr>          <td colspan="7"><img src="http://www.tasante.com/picts/common/pix.gif" width="1" height="15" border="0"></td>  </tr>  <tr>          <td rowspan="3"><img src="http://www.tasante.com/picts/common/pix.gif" width="5" height="1"></td>          <td rowspan="2" valign="top">             <!-- colonne de gauche -->             <script language="javascript">                  function JSC_strTrim_String(str) {                          str=str.replace(/^\s+/g,"");                          str=str.replace(/\s+$/g,"");                          return str;                  }            function rechercher() {                  if (JSC_strTrim_String(document.form1.strSCR_Recherche.value) == "" ){                                          return;                  }                                  document.form1.submit();          }  </script>       <table width="108" border="0" cellspacing="0" cellpadding="0">      <tr>              <td colspan="4" align="center"><a href="http://www.tasante.com/index.php"><img src="http://www.tasante.com/picts/common/logo_vert.gif" border="0"></a></td>      </tr>      <tr>          <td colspan="4"><img src="http://www.tasante.com/picts/common/pix.gif" width="1" height="20"></td>      </tr>            <!-- debut du cartouche rechercher -->      <form name="form1" action="http://www.tasante.com/resultats.php" method="get"></tr>          <tr>                  <td align="center" colspan="4">                  <table cellpadding="0" cellspacing="0" border="0">                  <tr>                          <td><img src="http://www.tasante.com/picts/common/tt_rechercher.gif"></td>                  </tr>                  </table>                  </td>          </tr>      <tr>                  <td align="center" colspan="4">                  <table cellpadding="0" cellspacing="0" border="0">                  <tr>                          <td width="71" bgcolor="#000099" align="center"><input type="text" name="strSCR_Recherche" size="8"></td>                  <td width="36" align="right" bgcolor="#000099" valign="bottom"><a href="javascript:rechercher();"><img src="http://www.tasante.com/picts/common/bt_ok.gif" border="0"></a></td>                  </tr>                  </table>                  </td>          </tr></form>            <!-- fin du cartouche rechercher -->      <tr>          <td colspan="4"><img src="http://www.tasante.com/picts/common/pix.gif" width="1" height="5"></td>      </tr>            <!-- debut sexe et sentiments -->          <!--test-->          <tr>          <td colspan="4" align="center">                  <table cellpadding="0" cellspacing="0" border="0" bgcolor="#c7d753">                  <tr>          <td colspan="4" align="center"><img src="http://www.tasante.com/picts/common/tt_sexes_et_sentiments.gif" width="108" height="38"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/sexe/puberte/index.php?SousRub=4" class="menu">Pubert&eacute;</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/sexe/protections/index.php?SousRub=3" class="menu">Pr&eacute;vention</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/sexe/contraception/index.php?SousRub=1" class="menu">Contraception</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/sexe/premieres_fois/index.php?SousRub=5" class="menu">Premi&egrave;res fois</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/sexe/couple/index.php?SousRub=6" class="menu">En couple</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>              <!-- fin sexe et sentiments -->                  <!-- debut et les drogues -->      <tr>          <td colspan="4" align="center"><img src="http://www.tasante.com/picts/common/tt_etlesdrogues.gif" width="108" height="34"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/drogues/alcool/index.php?SousRub=7" class="menu">Alcool</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/drogues/clopes/index.php?SousRub=8" class="menu">Clopes</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/drogues/loi/index.php?SousRub=9" class="menu">Illicite</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>          <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/drogues/dependance/index.php?SousRub=10" class="menu">D&eacute;pendance</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>          <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/drogues/aider/index.php?SousRub=11" class="menu">Aider, &ecirc;tre aid&eacute;</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>          <!-- fin et les drogues -->          <!-- debut bien etre -->      <tr>          <td colspan="4" align="center"><img src="http://www.tasante.com/picts/common/tt_bienetre.gif" width="108" height="23"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/bien_etre/beaute/index.php?SousRub=12" class="menu">Beaut&eacute; - Forme</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/bien_etre/questionsdepeau/index.php?SousRub=13" class="menu">Questions de peau</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/bien_etre/alimentation/index.php?SousRub=14" class="menu">A table</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/bien_etre/sport/index.php?SousRub=15" class="menu">Sport</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/bien_etre/psychologie/index.php?SousRub=16" class="menu">Bien dans ta t&ecirc;te</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>            <!-- fin bien etre -->            <!-- debut se soigner -->      <tr>          <td colspan="4" align="center"><img src="http://www.tasante.com/picts/common/tt_sesoigner.gif" width="108" height="23"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/soigner/docteurs/index.php?SousRub=17" class="menu">Docteurs, etc...</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/soigner/maladies/index.php?SousRub=18" class="menu">Maladies</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/soigner/secours/index.php?SousRub=19" class="menu">Premier secours</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/soigner/medecine_douce/index.php?SousRub=2" class="menu">M&eacute;decine douce</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>      <tr>          <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/sous_rubrique/soigner/recherche/index.php?SousRub=20" class="menu">Mon corps</a><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      </tr>            <!-- fin se soigner -->        <!-- newsletter + logos partenaires -->  	<tr>  	<tr>         <td colspan="4" align="center"><a href="http://www.tasante.com/sous_rubrique/soigner/medecine_douce/Pages/test-liste.php"><img src="http://www.tasante.com/picts/common/tt_testtoi.gif" border="0"></a></td> 	</tr>     <tr>         <td colspan="4" align="right" background="http://www.tasante.com/picts/common/pixvert.gif"><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="10"></td>     </tr> 	<!-- <tr>         <td colspan="4" align="center"><a href="/reportages/index.php?Id_Reportage=56&SousRub=15"><img src="/picts/common/tt_muscu.gif" border="0"></a></td> 	</tr> --> 	<tr>         <td colspan="4" align="center"><a href="http://www.tasante.com/sous_rubrique/soigner/medecine_douce/Pages/sms_imc.php"><img src="http://www.tasante.com/picts/common/sms.gif" border="0"></a></td> 	</tr>     </tr>      <tr>          <td colspan="4" align="center"><img src="http://www.tasante.com/picts/common/arrondi.gif" width="108" height="15"></td>      </tr>  	</table>  	</td>      </tr>  	<!--test-->      <tr>          <td colspan="4"><img src="http://www.tasante.com/picts/common/pix.gif" width="1" height="5"></td>      </tr>     <tr>         <td colspan="4" align="center"><a target="_blank" href="http://www.skyrock.com/"><img src="http://www.tasante.com/picts/common/logosky.gif" border=0></a></td>     </tr>  <!--     <tr>          <td colspan="4" align="center"><img src="http://www.tasante.com/picts/common/logos_partenaires.gif" width="108" height="31" usemap="#Partenaire" ismap border=0>          </td>      </tr> -->     <!-- 	<tr>          <td colspan="4" align="center"><a href="http://www.cnamts.fr" target=_blank><img src="http://www.tasante.com/picts/aide/cnam.gif" border=0></a></td>      </tr>      <tr> 	    <td colspan="4" align="center"><a href="http://www.sante.gouv.fr" target=_blank><img src="http://www.tasante.com/picts/aide/ministeresante.gif" border=0></a></td>     </tr>     --> </table>  <MAP NAME="Partenaire">  <area shape="RECT" coords="0,1,55,31" href="http://www.skyrock.com" target="_blank">  <AREA SHAPE=RECT COORDS="57,1,108,31" HREF="http://www.cfes.sante.fr" target="_blank">  </MAP>           <!-- fin colonne gauche -->      </td>      <td rowspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width="5" height="1"></td>          <!-- contenu -->      <td width="467" valign="top">          <!--- commence nav haut --->      <table cellpadding="0" cellspacing="0" border="0" width="468"> 	<tr> 		<td align="center" width="468"><!-- DEBUT TAG PUB TASANTE --><!-- TAG PUB TASANTE 2002 v1.0 --><script LANGUAGE="JavaScript1.1"> 	// var pub_sky_page = "operations"; 	var pub_sky_page = "sousrubriques"; </script><script LANGUAGE="JavaScript1.1" src="/banners/part1.js"></script><script LANGUAGE="JavaScript1.1" src="/banners/part2.js"></script><!-- Bien coller la partir droite avec la prochaine balise... // FIN TAG PUB SKYROCK --><!-- FIN TAG PUB TASANTE --></td> 	</tr> 	<tr> 		<td><img src="http://www.tasante.com/picts/common/pix.gif" width="468" height="5"></td> 	</tr> 	<tr> 		<td width="468"> 			<table cellpadding="0" cellspacing="0" border="0" width="468"> 				<tr> 					<!-- nav haut --> 					<td align="left" width="222" class="text">Vendredi&nbsp;18&nbsp;Avril&nbsp;2003</td> 					<td align="right" width="246" class="text"><a href="http://www.tasante.com/aide/faq.php">FAQ</a> | <a href="http://www.tasante.com/aide/plan.php">Plan du site</a> | <a href="javascript:popup('http://www.tasante.com/aide/pop_up_aide.php','520','370','yes');">Contacts</a></td> 					<!-- fin nav haut --> 				</tr> 				<tr> 					<td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width="1" height="20"></td> 				</tr>     <!--- fin nav haut --->                  <tr>                          <td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=10 alt="" border="0"></td>                  </tr>         <tr>                          <td colspan="2">                          <table width="467" border="0" cellspacing="0" cellpadding="0">              <tr>                  <td width="18" bgcolor=#FFAC00 valign=top><img src="http://www.tasante.com/picts/common/arrondi_orange1.gif" border="0"></td>                  <td width="431" bgcolor="#FFAC00" class="titlesm">Bien-tre > <a href=/sous_rubrique/bien_etre/alimentation/index.php?SousRub=14>A table</A> > Accroc au chocolat ?</font></td>                  <td width="18" bgcolor=#FFAC00 valign=top><img src="http://www.tasante.com/picts/common/arrondi_orange2.gif" border="0"></td>              </tr>              </table>                          </td>                  </tr>          <tr>              <td colspan="2">                          <table width="467" border="0" cellspacing="0" cellpadding="0">              <tr>                  <td width="18"><img src="http://www.tasante.com/picts/common/pix.gif" width="18" height="1"></td>                  <td width="293" class="titlelg"><!--Le titre tait l avant--></td>                  <td width="156"><img src="http://www.tasante.com/picts/common/arrondi_bloc.gif" border="0" alt=""></td>              </tr>              </table>                          </td>          </tr>                  <tr>                          <td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=10 alt="" border="0"></td>                  </tr>                  </table>                <table border="0" cellspacing="0" cellpadding="0" width="467">                         <tr>              <td class="textbt"  align="RIGHT"><a href="JavaScript:popup('http://www.tasante.com/template/TemplatePrint.php?SousRub=14&IdPage=292', 500, 600, 'yes');">Imprime cette page</a>&nbsp;</td>              <td width=16><a href="JavaScript:popup('http://www.tasante.com/template/TemplatePrint.php?SousRub=14&IdPage=292', 500, 600, 'yes');"><img src="http://www.tasante.com/picts/common/bt_play_sm.gif" border="0"></a></td>              </tr>             </table>                    <!--                  <table width="467" border="0" cellspacing="0" cellpadding="0">                  <TR>                          <TD width="18" align="left"><img src="http://www.tasante.com/picts/common/pix.gif" width=18 height=10 alt="" border="0"></td>                          <td align="RIGHT"><a href=#><img src="http://www.tasante.com/picts/common/bt_imprimer.gif" border="0"></a></TD>                  </tr>                  <tr>                          <td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=20 alt="" border="0"></td>                  </tr>                  </table>                  -->                  <table width="467" border="0" cellspacing="0" cellpadding="0">                  <TR>                          <TD colspan="2" align="left">                          <table border="0" cellspacing="0" cellpadding="0">                          <TR>                                  <TD  bgcolor=#FFAC00 valign=bottom><img src="http://www.tasante.com/picts/common/arrondi_orange3.gif" width=18 height=20 alt="" border="0"></td>                                  <td nowrap background="http://www.tasante.com/picts/common/pix_orange.gif" class="titlesm">Accroc au chocolat ?</TD>                                  <TD bgcolor=#FFAC00 valign=top><img src="http://www.tasante.com/picts/common/arrondi_orange2.gif" width=18 height=20 alt="" border="0"></td>                          </TR>                          </table>                          </td>                  </tr>          </tr>                          <td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=10 alt="" border="0"></td>                  </tr>                    <TR>                          <TD colspan="2">                          <table width="467" border="0" cellspacing="0" cellpadding="0">                          <TR>                                                                                           <TD rowspan="3"><img src="http://www.tasante.com/picts/common/pix.gif" width=18 height=1 alt="" border="0"></td>                              <td  valign="top" colspan="2"><img src="http://www.tasante.com/sous_rubrique/picts/ill/292_1.jpg" alt="" border="0"></td>                                                                                  <TD class="text">En pleine p&eacute;riode de f&ecirc;tes, difficile de ne pas craquer pour le chocolat. Pas besoin de culpabiliser, m&ecirc;me pour ceux qui en prennent toute l&#39;ann&eacute;e, car c&#39;est bon pour la sant&eacute;...Explications</td>                          </TR>                          </TABLE>                  </tr>          <tr>              <td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=10 alt="" border="0"></td>                  </TR>                  <tr>              <TD><img src="http://www.tasante.com/picts/common/pix.gif" width=18 height=1 alt="" border="0"></td>              <td class="text">D'abord, le chocolat est un aliment plaisir par excellence. Plaisir de l'il devant une tablette d'un noir profond et brillant, de l'odorat devant le parfum sublime du cacao, du go&ucirc;t enfin, o&ugrave; se m&ecirc;le l'amer et le sucr&eacute;, le croquant et le moelleux, l'&eacute;quilibre des textures et la longueur en bouche (on peut parler des crus de chocolat avec les m&ecirc;mes termes que pour les crus de grands vins !). <BR><BR>Ensuite, le chocolat est un <STRONG>aliment excellent pour la sant&eacute;</STRONG>, fait connu depuis longtemps (la premi&egrave;re th&egrave;se de doctorat en m&eacute;decine &eacute;crite sur ce sujet date de 1864 !). S'il est riche en glucides et en lipides, calorique (513 kcal pour 100 grammes de chocolat noir), il apporte n&eacute;anmoins du magn&eacute;sium, du potassium, du calcium, du fer, du cuivre et des antioxydants (qui sont des substances qui prot&eacute;geraient du cancer).<BR><BR>Enfin, si on craque pour le chocolat, c'est aussi parce qu'il apporte des substances psychostimulantes (cest-&agrave;-dire stimulantes du syst&egrave;me nerveux) comme la caf&eacute;ine, la th&eacute;obromine (un produit voisin de la caf&eacute;ine), la ph&eacute;nyl&eacute;thylamine (une substance se rapprochant des amph&eacute;tamines), le salsolinol (qui a une action antid&eacute;pressive, et m&ecirc;me une action proche des d&eacute;riv&eacute;s de l'opium), la tyramine et la s&eacute;rotonine (qui ont un effet antid&eacute;presseur) et l'anandamide (qui est ce que l'on appelle un cannabino&iuml;de, c'est-&agrave;-dire une substance proche du <A class=lienblu href="http://www.tasante.com/sous_rubrique/drogues/loi/Pages/cannabis.php?SousRub=9" target=_blank>cannabis</A>).<BR><BR>C&eacute;l&egrave;bre pour ses qualit&eacute;s gustatives et sa valeur &eacute;nerg&eacute;tique, le chocolat pr&eacute;sente donc &eacute;galement des propri&eacute;t&eacute;s de stimulation psychique et physique, ainsi que des vertus anxiolytiques (qui calment <A class=lienblu href="http://www.tasante.com/rapidoc/lexique_resultats.php?intSCR_Mot=107" target=_blank>lanxi&eacute;t&eacute;</A>). L'&eacute;tat de <A class=lienblu href="http://www.tasante.com/sous_rubrique/drogues/dependance/index.php?SousRub=10" target=_blank>d&eacute;pendance </A>d&eacute;crit chez les "chocolotomanes", qui consomment quotidiennement (et depuis des ann&eacute;es) 100 &agrave; 500 grammes de chocolat, am&egrave;ne &agrave; penser que la "chocolotomanie" pourrait bien &ecirc;tre une forme de toxicomanie douce, mais bien agr&eacute;able, sans effet n&eacute;gatif et  tout &agrave; fait l&eacute;gale !<BR><BR><STRONG>Pour en savoir plus</STRONG>, tu peux consulter :<BR><EM>Dictionnaire des drogues, des toxicomanies et des d&eacute;pendances</EM><BR>D. RICHARD et J.-L. SENON. Larousse 1999<BR><BR>Va voir sinon les sites Internet <A class=lienblu href="http://www.choco-club.com/" target=_blank>Choco Club </A>et <A class=lienblu href="http://www.chocoland.com/" target=_blank>Chocoland.com</A><BR><BR></td>                  </TR>                  </tr>                          <td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=10 alt="" border="0"></td>                  </tr>                  <tr>                  <TD width="18" align="left"><img src="http://www.tasante.com/picts/common/pix.gif" width=18 height=10 alt="" border="0"></td>                  <td width="449" class="textgris">Francis Pradeau - M&eacute;decin des h&ocirc;pitaux </td>                 </TR>          <tr>              <td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=10 alt="" border="0"></td>                  </TR>                    <TR><TD colspan="2" align="RIGHT">                  </td></tr>            <tr>              <td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=20 alt="" border="0"></td>                  </TR>          </table><table width="467" border="0" cellspacing="0" cellpadding="0">                  <TR>                          <TD>                                                   <table border="0" cellspacing="0" cellpadding="0">                          <TR>                                  <TD><img src="http://www.tasante.com/picts/common/arrondi_orange3.gif" width=18 height=20 alt="" border="0"></td>                                  <td nowrap background="http://www.tasante.com/picts/common/pix_orange.gif"class="titlesm"><a href="../../../../template/temoinage.php?IdPage=292&SousRub=14">Vos opinions, vos t&eacute;moignages,...</a></TD>                                  <TD><img src="http://www.tasante.com/picts/common/arrondi_orange2.gif" width=18 height=20 alt="" border="0"></td>                          </TR>                          </table>                                                   </td>              <td align="right">               <table border="0" cellspacing="0" cellpadding="0">                           <script>              function melto(){              document.form_mel.submit();              }              </script>              <table border="0" cellspacing="0" cellpadding="0">              <form name="form_mel" method="post" action="/envoi/saisi.php">              <input type=hidden name=SousRub value="14">              <input type=hidden name=Titre value="Accroc au chocolat ?">              <input type=hidden name=Credit value="Francis Pradeau - M&eacute;decin des h&ocirc;pitaux">              <input type=hidden name=Date value="20021220">              <input type=hidden name=Chapeau value="En pleine p&eacute;riode de f&ecirc;tes, difficile de ne pas craquer pour le chocolat. Pas besoin de culpabiliser, m&ecirc;me pour ceux qui en prennent toute l&#39;ann&eacute;e, car c&#39;est bon pour la sant&eacute;...Explications">              <input type=hidden name=Url value="www.tasante.com/sous_rubrique/bien_etre/alimentation/Pages/chocolat.php?SousRub=14">              </form>              <tr>                  <td class="textbt"><A HREF="javascript:melto();">Envoie cette page &agrave; un ami</a>&nbsp;</td>                  <td><A HREF="javascript:melto();"><img src="http://www.tasante.com/picts/common/bt_play_sm.gif" border="0"></a></td>              </tr>              </table>              </td>              </tr>          </table> <br><br>          <table width="467" border="0" cellspacing="0" cellpadding="0">                               <tr>              <td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=10 alt="" border="0"></td>                  </TR>          <tr>                  <TD width="18" align="left"><img src="http://www.tasante.com/picts/common/pix.gif" width=18 height=10 alt="" border="0"></td>                  <td width="449" class="textgris">Par tia, le 04/10/2001</td>                  </TR>          <tr>              <td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=10 alt="" border="0"></td>                  </TR>                  <TR>              <TD width="18"><img src="http://www.tasante.com/picts/common/pix.gif" width=18 height=10 alt="" border="0"></td>              <td width="449" class="text">lut tout le monde!Moi aussi je suis accros du chocolat, d&egrave;s que j&#39;en voit, je saute dessus, c&#39;est plus fort que moi. Jen mange surtout le soir j&#39;usqu&#39;&agrave; temps qu&#39;il y en ait plus car &ccedil;a me fait vraiment du bien!Je &quot;kiff&quot; surtout le choco black 76% voir 80%. <BR>Le chocolat est la seule aide que j&#39;ai trouv&eacute; pour me sortir de l&#39;anor&eacute;xie alors VIVE LE CHOCOLAT !!!!! <BR>Tia <BR></td>          </tr>          <tr>              <td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=20 alt="" border="0"></td>          </tr>                           <tr>              <td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=10 alt="" border="0"></td>                  </TR>          <tr>                  <TD width="18" align="left"><img src="http://www.tasante.com/picts/common/pix.gif" width=18 height=10 alt="" border="0"></td>                  <td width="449" class="textgris">Par rital22, le 16/06/2001</td>                  </TR>          <tr>              <td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=10 alt="" border="0"></td>                  </TR>                  <TR>              <TD width="18"><img src="http://www.tasante.com/picts/common/pix.gif" width=18 height=10 alt="" border="0"></td>              <td width="449" class="text">Moi je ne suis ni pas accro au tabac ni &agrave; l&#39;alcool mais au chocolat!!Pour &ecirc;tre en forme il me faut au moins 1carreau par jour. En fait c&#39;est comme une drogue mais qui ne me fais aucun mal mais pleine de calories!!!On a qu&#39;1 seule vie autant en profiter!!!</td>          </tr>          <tr>              <td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=20 alt="" border="0"></td>          </tr>                           <tr>              <td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=10 alt="" border="0"></td>                  </TR>          <tr>                  <TD width="18" align="left"><img src="http://www.tasante.com/picts/common/pix.gif" width=18 height=10 alt="" border="0"></td>                  <td width="449" class="textgris">Par virgginie, le 24/05/2001</td>                  </TR>          <tr>              <td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=10 alt="" border="0"></td>                  </TR>                  <TR>              <TD width="18"><img src="http://www.tasante.com/picts/common/pix.gif" width=18 height=10 alt="" border="0"></td>              <td width="449" class="text">j&#39;en mange tout le temps ;le pot de nutela a la cuillere et une tablette par jour au moins ,je fume pas je bois pas d&#39;alcool mais laissez moi manger plein de chocolat ! c&#39;est mon pecher mignon (gros) lol <BR>virgginie</td>          </tr>          <tr>              <td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=20 alt="" border="0"></td>          </tr>                                   </table><br>                  <table width="467" border="0" cellspacing="0" cellpadding="0">                  <TR>                          <td colspan="2" align="LEFT">                          <table border="0" cellspacing="0" cellpadding="0">                          <TR>                                  <TD><img src="http://www.tasante.com/picts/common/arrondi_orange3.gif" width=18 height=20 alt="" border="0"></td>                                  <td nowrap background="http://www.tasante.com/picts/common/pix_orange.gif" class="titlesm">Toi aussi tu peux t&eacute;moigner</TD>                                  <TD><img src="http://www.tasante.com/picts/common/arrondi_orange2.gif" width=18 height=20 alt="" border="0"></td>                          </TR>                          </table>                          </td>                                                   <td colspan="3" align="left">                          <table border="0" cellspacing="0" cellpadding="0">                          <TR>                                  <TD><img src="http://www.tasante.com/picts/common/arrondi_orange3.gif" width=18 height=20 alt="" border="0"></td>                                  <td nowrap background="http://www.tasante.com/picts/common/pix_orange.gif" class="titlesm">T&eacute;moigner</TD>                                  <TD><img src="http://www.tasante.com/picts/common/arrondi_orange2.gif" width=18 height=20 alt="" border="0"></td>                          </TR>                          </table>                          </td>                                           </tr>                  <TR>                          <TD>                          <table width="250" border="0" cellspacing="0" cellpadding="0">                                                   <tr><td colspan="3" class="text">                                                                     Si tu veux tmoigner, tu dois t'identifier !                                                                       <br>                          <form action="/sous_rubrique/bien_etre/alimentation/Pages/chocolat.php?SousRub=14" method="POST" name="identification" id="identification">                          <input type="hidden" name="valider" value="ok">                          <input type="hidden" name="srcform" value="template1"> <!--sert a identifier le formulaire d'ou viennent les donnees-->                          <input type="hidden" name="IdPage" value="292">                          <input type="hidden" name="SousRub" value="14">                                                  </td></tr>                          <TR>                          <TD colspan="3"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=10 alt="" border="0"></td>                          </TR>                                  <TR>                      <td><img src="http://www.tasante.com/picts/common/pix.gif" width=18 height=1 border="0"></td>                                          <td nowrap class="titlesm">Ton pseudo :</td>                                          <TD align="right"><input type="Text" name="strSCR_User" size="18" maxlength="9"></td>                                  </TR>                                  <TR>                      <td><img src="http://www.tasante.com/picts/common/pix.gif" width=18 height=1 border="0"></td>                                          <TD class="titlesm">Ton pass :</td>                                          <td align="RIGHT"><input type="password" name="strSCR_Pass" size="18" maxlength="10"></td>                                  </tr>                                                                   <TR>                                          <TD colspan="3">                                          <table width="250" border="0" cellspacing="0" cellpadding="0">                                          <TR>                          <td width="18"><img src="http://www.tasante.com/picts/common/pix.gif" width=18 height=1 border="0"></td>                                              <td width="50"><font face="Arial" size="2" class="titlesm">Valider</td>                                                                                               <td width="152"><input type="image" src="http://www.tasante.com/picts/common/bt_play.gif" width=24 height=24 alt="" border="0"></td>                                                                                           </tr>                                          </table>                                          </td>                                  </tr>                          </TABLE></form>                          </td>                                                   <TD width="15" align="left"><img src="http://www.tasante.com/picts/common/pix.gif" width=15 height=10 alt="" border="0"></td>                          <td width="2"><img src="http://www.tasante.com/picts/common/pixvert.gif" width=2 height=150 alt="" border="0"></td>                          <TD width="5" align="left"><img src="http://www.tasante.com/picts/common/pix.gif" width=5 height=10 alt="" border="0"></td>                          <TD valign="top">                                  <table border="0" cellspacing="0" cellpadding="0">                                  <TR>                                          <TD colspan="3"><img src="http://www.tasante.com/picts/common/pix.gif" width=195 height=10 alt="" border="0"></td>                                  </TR>                                  <TR>                                          <TD width="10"><img src="http://www.tasante.com/picts/common/pix.gif" width=10 height=10 alt="" border="0"></td>                                          <td colspan="2" class="text">Pour tmoigner, tu dois devenir membre tasant.com. Devenir membre est gratuit et ANONYME, ce qui signifie que ton nom n'est pas demand.</td>                                  </tr>                  <TR>                                          <TD colspan="3"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=10 alt="" border="0"></td>                                  </TR>                                  <TR>                                          <TD width="10"><img src="http://www.tasante.com/picts/common/pix.gif" width=10 height=10 alt="" border="0"></td>                                          <td width="70" class="titlesm">S'inscrire</td>                                          <td width="115"><a href="../../../../pseudo/saisie.php"><img src="http://www.tasante.com/picts/common/bt_play.gif" width=24 height=24 alt="" border="0"></a></td>                                  </tr>                                  </table>                                  </form>                          </td>                  </tr>                  <tr>                          <td colspan="5"><img src="http://www.tasante.com/picts/common/pix.gif" width=1 height=20 alt="" border="0"></td>                  </tr>          </table>      </td>          </tr>          </table>          </td>          <!-- fin contenu -->      <td rowspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td>      <td rowspan="2" valign="top">          <!-- debut colonne droite -->      <form>      <!-- Version avec SkyMachin --> <!-- <table width="260" border="0" cellspacing="0" cellpadding="0"> --> <!-- Version sans SkyMachin --> <table width="130" border="0" cellspacing="0" cellpadding="0"> <tr> <td width=130 valign=top> 	<table width="130" border="0" cellspacing="0" cellpadding="0"> 						<!-- debut de l'identification--> 	   <tr> 			<td colspan="2" background="http://www.tasante.com/picts/common/pixvert.gif"><a href="http://www.tasante.com/pseudo/saisie.php"><img src="http://www.tasante.com/picts/common/st_pasmembre.gif" border="0"></a></td> 		</tr> 		<tr> 			<td colspan="2" background="http://www.tasante.com/picts/common/pixvert.gif"><img src="http://www.tasante.com/picts/common/st_esmembre.gif" border="0"> </td> 		</tr> 				<!--<tr> 					<td colspan="2" background="http://www.tasante.com/picts/common/pixvert.gif" class="textsm"><a href="http://www.tasante.com/pseudo/saisie.php"><img src="http://www.tasante.com/picts/common/st_inscription.gif" border="0" width="127" height="40"></a> 			--> <!--</td> 				</tr>-->     				<form action="/sous_rubrique/bien_etre/alimentation/Pages/chocolat.php?SousRub=14" method="post" name="identification" id="identification"> 				<input type="hidden" name="valider" value="ok"> 				<input type="hidden" name="SousRub" value="14"> 				<input type="hidden" name="srcform" value="colgauche"> <!--sert a identifier le formulaire d'ou viennent les donnees--> 				 <tr> 				<td background="http://www.tasante.com/picts/common/pixvert.gif" width="71" rowspan="2"><img src="http://www.tasante.com/picts/common/pseudopass.gif" width="60" height="50"></td> 				<td bgcolor="#000099" align="center"><input type="text" name="strSCR_User" size="6" maxlength="9" ></td> 			</tr> 			<tr> 				<td bgcolor="#000099" align="center"><input type="password" name="strSCR_Pass" size="6" maxlength="30"></td> 			</tr> 			<tr> 				<td><img src="http://www.tasante.com/picts/common/coin_inscription.gif" width="71" height="18" border="0"></td> 				<td><input type="image" src="http://www.tasante.com/picts/common/bt_ok2.gif" border="0"></td> 			</tr> 				</form> 				<!-- fin de l'identification--> 			 	<tr> 		<td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width="1" height="5"></td> 	</tr>  <form action="/newsletter/saisie.php" method=get> 	<tr> 		<td colspan="2"><img src="http://www.tasante.com/picts/common/tt_newsletterd.gif"></td> 	</td> 	<tr> 		<td colspan="2" nowrap background="http://www.tasante.com/picts/common/pixvert.gif"> 		<table cellpadding=0 cellspacing=0 border=0 width=100%> 			<tr> 				<td>&nbsp;<input type=text size=10 name=email></td> 				<td align=right valign=bottom><p align=right><input type="image" value="go" src="/picts/common/btnews2.gif"></p></td> 			</tr> 		</table> 		</td> 	</tr> </form>  	<tr> 		<td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width="1" height="5"></td> 	</tr>  	<tr> 		<td colspan="2"><a href="javascript:popup('/chat/irc/', 770, 545, 0);" target='_self'><img src="http://www.tasante.com/picts/common/tt_chat.gif" border=0></a></td> 	</td> 	<tr> 		<td colspan="2" nowrap background="http://www.tasante.com/picts/common/pixvert.gif"> 		 				<table cellpadding=0 cellspacing=0 border=0 width=100%> 			<tr> 				<td class="menu" nowrap><a href="javascript:popup('/chat/irc/', 770, 545, 0);" target='_self' class="menu">&nbsp;129 connects !<br>&nbsp;Rejoins le chat !</a></td> 				<td align=right valign=bottom ><p align=right><a href="javascript:popup('/chat/irc/', 770, 545, 0);" target='_self'><img src="/picts/common/btnews2.gif" border="0"></a></p></td> 			</tr> 		</table> 		</td> 	</tr>   	<tr> 		<td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width="1" height="5"></td> 	</tr>  	<tr> 		<td colspan="2"><img src="http://www.tasante.com/picts/common/tt_donnetonavis.gif" width="130" height="35"></td> 	</tr> 	<tr> 		<td colspan="2" background="http://www.tasante.com/picts/common/pixvert.gif" bgcolor="#C7d553" > 				<!-- accroche donne ton avis sur --> 				<table cellpadding="0" cellspacing="0" border="0"> 				<tr><td><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1" border="0"></td> 				<td>				   <a href="http://www.tasante.com/forums/index.php" class="menu">Plein de forums rien que pour toi. Alcool, tabac, canna...mais aussi, ta premi&egrave;re fois, la taille des seins et caetera.</a><map name="forum"><area shape="CIRCLE" coords="17,8,7" href="http://www.tasante.com/forums/index.php"></map></font></td> 				</tr> 				</table> 				<!-- fin accroche donne ton avis sur --> 				</td> 	</tr> 	<tr> 		<td colspan="2" bgcolor="#c7d753"> 		<img src="http://www.tasante.com/picts/common/tt_discuteendirect.gif" border="0" usemap="#forum"> 		</td> 	</tr> 	<tr> 		<td colspan="2" background="http://www.tasante.com/picts/common/pixvert.gif"> 				<!-- accroche discute en direct --> 				<table cellpadding="0" cellspacing="0" border="0"> 				<tr> 				<td><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td> 				<td><a href="http://www.tasante.com/chat/index.php" class="menu">Pas de chat de programme pour l&#39;instant. Tu peux mater les archives en attendant !</a></td> 				</tr> 				</table> 				<!-- fin accroche discute en direct --> 				</td> 	</tr> 	<tr> 		<td colspan="2"><img src="http://www.tasante.com/picts/common/arrondidiscute.gif" border="0" usemap="#discute"></td> 	</tr> 	<tr> 		<td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width="1" height="5"></td> 	</tr> 		<tr> 		<td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width="1" height="5"></td> 	</tr> 	<tr> 		<td colspan="2"><a href="http://www.tasante.com/specialistes/qui.php"><img src="http://www.tasante.com/picts/common/tt_quisont.gif" border="0"></a></td> 	</tr> 	<tr> 		<td colspan="2"><img src="http://www.tasante.com/picts/common/tt_lesspecialiste.gif" border="0"></td> 	</tr> 	<tr> 		<td colspan="2" background="http://www.tasante.com/picts/common/pixvert.gif"> 				<!-- accroche specialistes --> 				<table cellpadding="0" cellspacing="0" border="0"> 				<tr> 				<td><img src="http://www.tasante.com/picts/common/pix.gif" width="15" height="1"></td> 				<td><a href="http://www.tasante.com/specialistes/liste_spe.php" class="menu">Pose tes questions aux sp&eacute;cialistes !</a></td> 				</tr> 				</table> 				<!-- fin accroche specialistes --> 				</td> 	</tr> 	<tr> 		<td colspan="2"><img src="http://www.tasante.com/picts/common/arrondispecialistes.gif" usemap="#special" border="0"></td> 	</tr> 	<tr> 		<td colspan="2"><img src="http://www.tasante.com/picts/common/pix.gif" width="1" height="5"></td> 	</tr> 	<tr> 		<td colspan="2"><img src="http://www.tasante.com/picts/common/rapidoc.gif" border="0" usemap="#rapidoc"></td> 	</tr> </table>  <map name="discute"> <area shape="CIRCLE" coords="23,8,7" href="http://www.tasante.com/chat/index.php"> </map> <map name="special"> <area shape="CIRCLE" coords="23,8,7" href="http://www.tasante.com/specialistes/qui.php"> </map> <map name="rapidoc"> <area coords="20,30,126,51" href="http://www.tasante.com/rapidoc/lexique.php" shape="RECT"> <area coords="20,53,126,87" href="http://www.tasante.com/rapidoc/questions.php" shape="RECT"> <area coords="20,88,126,111" href="http://www.tasante.com/rapidoc/adresses.php" shape="RECT"> <area coords="20,112,126,133" href="http://www.tasante.com/rapidoc/biblio.php" shape="RECT"> <area coords="20,134,126,155" href="http://www.tasante.com/rapidoc/web.php" shape="RECT"> </map> </td> <!-- Version avec SkyMachin --> <!-- <td width=10>&nbsp;</td> <td valign=top><a href="http://www.skyrock.com"><img src="http://www.skyrock.com/pics/pix.gif" width=120 height=600 border=0></a></td> --> <!-- FIN --> </table>      </form>          <!-- fin colonne droite -->      </td>      <td rowspan="3"><img src="http://www.tasante.com/picts/common/pix.gif" width="5" height="1"></td>  </tr>  <!--- debut nav bas --->  <tr>  <td align="center" class="text">   <a href="http://www.tasante.com/aide/partenaires.php">     Tous nos partenaires   </a> |   <a href="http://www.tasante.com/aide/faq.php">    FAQ   </a> |   <a href="http://www.tasante.com/aide/plan.php">    Plan&nbsp;du&nbsp;site</a> |   <a href="javascript:popup('http://www.tasante.com/aide/pop_up_aide.php','520','370','yes');">    Contacts   </a> |   <a href="javascript:popup('http://www.tasante.com/piedpage/?famille=job','530','500','yes');">    Stages&nbsp;et&nbsp;jobs   </a> <!--	   <br />   <a href="javascript:popup('http://www.tasante.com/piedpage/?famille=inf','530','500','yes');">    Les conditions&nbsp;gnrales&nbsp;d'utilisation   </a> -->	 <!-- eStat --> <SCRIPT LANGUAGE="JavaScript"> <!-- var _PJS=0; //--> </SCRIPT> <SCRIPT LANGUAGE="JavaScript" SRC="http://prof.estat.com/js/m.js"></SCRIPT> <SCRIPT LANGUAGE="JavaScript"> <!-- if(_PJS) _estatl('217017116407','213013112686','/sous_rubrique/bien_etre/alimentation/Pages/chocolat.php?SousRub=14','tasante'); //--> </SCRIPT> <!-- /eStat -->  <!-- ICI TAG OJD --> <script> <!-- var gvar=""; //--></script> <script src="http://ojd.tasante.com/tag/tag.js"></script> <!--[if GTE IE 5]><script Language="JavaScript">//For IE5 try {gotag();}catch(e) {};gvar="O";</script><![endif]--> <SCRIPT LANGUAGE="JavaScript1.4"> <!--//For Netscape 6 if (gvar!="O") {try {gotag();}catch(e) {};gvar="O";} //--></SCRIPT> <SCRIPT LANGUAGE="JavaScript"> <!--//For other with no try-catch if (gvar!="O") {gotag();gvar="O"}//--> </SCRIPT> <!-- FIN TAG OJD --> </td> </tr>  <!--- fin nav bas --->  </table>  </td>  </tr>  </table>  <br><br>  </body>  </html>  <!--//  alert('Ton t&eacute;moignage est bien enregistr. Il ne sera pas affich&eacute; avant d'avoir &eacute;t&eacute; mod&eacute;r&eacute;');// -->  </SCRIPT>  
