 <HTML> <HEAD> <TITLE>Citema.htm-Dagonet</TITLE>  <!---Couleur Scrollbar Dsactive---> <style TYPE="text/css"> BODY { scrollbar-face-color: #7189AB;  scrollbar-shadow-color: #000000; scrollbar-highlight-color: #FFFFFF; scrollbar-3dlight-color: #000000;  scrollbar-darkshadow-color: #000000;  scrollbar-track-color: ##dde8fe;  scrollbar-arrow-color: #00FFFF; } </style> <!---Fin Couleur Scrollbar--->     </HEAD> <BODY> <SCRIPT language=JavaScript> <!-- Barre de Navigation -->  <!-- Debut var isDOM = false, isNS4 = false; if (document.all) var isDOM = true, docObj = 'document.all.', styObj = '.style'; else if (document.layers) var isNS4 = true, docObj = 'document.', styObj = ''; // Hide timeout var popTimer = 0; var litNow = new Array(); function popOver(menuNum, itemNum) { clearTimeout(popTimer); hideAllBut(menuNum); litNow = getTree(menuNum, itemNum); changeCol(litNow, true); targetNum = menu[menuNum][itemNum].target; if (targetNum > 0) { targetName = menu[targetNum][0].id; menuName = menu[menuNum][0].id; menuRef = eval(docObj + menuName + styObj); thisX = parseInt(menuRef.left); thisY = parseInt(menuRef.top); // Add onto this the position of the trigger item within the menu itemPath = docObj; if (isNS4) itemPath += menuName + '.document.'; itemRef = eval(itemPath + menuName + itemNum.toString() + styObj); thisX += parseInt(itemRef.left); thisY += parseInt(itemRef.top); // Add those to the target's offset to set the target's position, show it. with (eval(docObj + targetName + styObj)) { left = parseInt(thisX + menu[targetNum][0].x); top = parseInt(thisY + menu[targetNum][0].y); visibility = 'visible';       }    } } function popOut(menuNum, itemNum) { // Hide menu in 1/2 sec, *UNLESS* another mouseover clears the timeout! popTimer = setTimeout('hideAllBut(0)', 500); } function getTree(menuNum, itemNum) { // Array index is the menu number. The contents are null (if that menu is not a parent) // or the item number in that menu that is an ancestor (to light it up). itemArray = new Array(menu.length); while(1) { itemArray[menuNum] = itemNum; if (menuNum == 0) return itemArray; itemNum = menu[menuNum][0].parentItem; menuNum = menu[menuNum][0].parentMenu;    } } // Pass an array and a boolean to specify colour change, true = over colour. function changeCol(changeArray, isOver) { for (menuCount = 0; menuCount < changeArray.length; menuCount++) { if (changeArray[menuCount]) { thisMenu = menu[menuCount][0].id; thisItem = thisMenu + changeArray[menuCount].toString(); newCol = isOver ? menu[menuCount][0].overCol : menu[menuCount][0].backCol; if (isDOM) document.all[thisItem].style.backgroundColor = newCol; if (isNS4) document[thisMenu].document[thisItem].bgColor = newCol;       }    } } function hideAllBut(menuNum) { var keepMenus = getTree(menuNum, 1); for (count = 0; count < menu.length; count++) if (!keepMenus[count]) eval(docObj + menu[count][0].id + styObj + '.visibility = "hidden"'); changeCol(litNow, false); } // *** MENU CONSTRUCTION FUNCTIONS *** // Variable to end a div or layer based on browser. var endDL = isDOM ? '</div>' : '</layer>'; function Menu(id, x, y, width, overCol, backCol, borderCol) { this.id = id; this.x = x; this.y = y; this.width = width; // Colours of menu and items. this.overCol = overCol; this.backCol = backCol; this.borderCol = borderCol; // Parent menu and item numbers, indexed later. this.parentMenu = null; this.parentItem = null; } function Item(text, href, height, target) { this.text = text; this.href = href; this.height = height; this.target = target; } function startDL(id, x, y, width, height, vis, back, border, zIndex, extraProps) { // Write a div in IE that resembles a layer's settings, or a layer in NS. if (isDOM) { str = '<div id="' + id + '" style="position: absolute; left: ' + x + '; top: ' + y +  '; width: ' + width + '; height: ' + height + '; visibility: ' + vis + '; '; if (back) str += 'background: ' + back + '; '; if (border) str += 'padding: 3px; border: 1px solid ' + border + '; '; if (zIndex) str += 'z-index: ' + zIndex + '; '; // End style declaration. str += '" '; } if (isNS4) { str = '<layer id="' + id + '" left="' + x + '" top="' + y + '" width="' + width +  '" height="' + height + '" visibility="' + vis + '" '; if (back) str += 'bgcolor="' + back + '" '; if (border) str += 'style="border: 1px solid ' + border + '" '; if (zIndex) str += 'z-index="' + zIndex + '" '; } return str + extraProps + '>'; } function mouseProps(currMenu, currItem) { return 'onMouseOver="popOver(' + currMenu + ',' + currItem + ')" onMouseOut="popOut(' + currMenu + ',' + currItem + ')"'; } function writeMenus(customRoot, popInd) { for (currMenu = 0; currMenu < menu.length; currMenu++) { showMenu = true; if ((currMenu == 0) && customRoot) { document.write(customRoot); showMenu = false; } with (menu[currMenu][0]) { // Start generating a div with position offset - no dimensions, colours, mouseovers. // This position is only relevant for root menu anyway as all others are altered later. menuHTML = startDL(id, x, y, 0, 0, 'hidden', null, null, 100, ''); // Width is less padding (3 left & right) and border (1 left & right). var back = backCol, bord = borderCol, currWidth = width - 8; } // Y-position of next item, increase if you want a menu header. itemPos = 0; // Remember, items start from 1 in the array (0 is menu object itself, above). for (currItem = 1; currItem < menu[currMenu].length; currItem++) { // Auto-generate ID's in numerical sequence. trigID = menu[currMenu][0].id + currItem.toString(); // Now, work with properties of individual menu items. with (menu[currMenu][currItem]) { // Start a menu item positioned vertically, with mouse events and colours. menuHTML += startDL(trigID, 0, itemPos, 0, 0, 'inherit', back, bord, 100, mouseProps(currMenu, currItem)) + '<table width="' + currWidth + '" border="0" cellspacing="0" cellpadding="0"><tr>' + '<td align="left"><a class="Item" href="' + href + '">' + text + '</a></td>' + '<td class="Item" align="right">' + (target ? popInd : '') + '</td></tr></table>' + endDL; if (target > 0) { // Set target's parents to this and offset it by the current position. menu[target][0].parentMenu = currMenu; menu[target][0].parentItem = currItem; } // Move next item position down by this item's height. itemPos += height;    } } // Write this menu to the document. if (showMenu) document.write(menuHTML + endDL); litNow[currMenu] = null;    } } //  End --> </SCRIPT>  <STYLE>.Item { 	FONT: 20px Calisto MT, Helvetica; COLOR: #ffffff; TEXT-DECORATION: none } </STYLE> <!-- STEP TWO: Copy this code into the BODY of your HTML document  --> <SCRIPT language=JavaScript>   <!-- Begin /* Syntaxes:  *  * menu[menuNumber][0] = new Menu('menu ID', left, top, width, 'mouseover colour',  *'background colour', 'border colour');  * Left and Top are measured on-the-fly relative to the top-left corner of its trigger.  *  * menu[menuNumber][itemNumber] = new Item('Text', 'URL', vertical spacing to next item,   *target menu number);  * If no target menu (popout) is desired, set it to 0. All menus must trace back their  * targets to the root menu! That is, every menu must be targeted by one item somewhere.  * Even if you're not writing the root menu, you must still specify its settings here.  */ var menu = new Array(); // Default colours passed to most menu constructors (just passed to functions, not // a global variable - makes things easier to change later). var defOver = '#add8e6', defBack = '#ffc0cb', defBorder = '#5f9ea0'; // Default height of menu items - the spacing to the next item, actually. var defHeight = 30; // Menu 0 is the special, 'root' menu from which everything else arises. menu[0] = new Array(); // Pass a few different colours, as an example. menu[0][0] = new Menu('rootMenu', 0, 0, 100, '#ffc0cb', '#ffc0cb', defBorder); // Notice how the targets are all set to nonzero values... menu[0][1] = new Item('File', '#', defHeight, 1); menu[0][2] = new Item('Edit', '#', defHeight, 2); menu[0][3] = new Item('Help', '#', defHeight, 3); menu[0][4] = new Item('ESSAI', '#', defHeight, 4);  menu[1] = new Array(); // The File menu is positioned 0px across and 22 down from its trigger, and is 80 wide. menu[1][0] = new Menu('associationMenu', 0, 22, 100, defOver, defBack, defBorder); menu[1][1] = new Item('Recherche', 'http://mcar.cjb.net/', defHeight, 0); menu[1][2] = new Item('Ngm', 'http://ngmalgache.free.fr/', defHeight, 0); menu[1][3] = new Item('Serasera', 'http://www.geocities.com/seragasy/', defHeight, 0);  menu[2] = new Array(); menu[2][0] = new Menu('pdtvMenu', 0, 22, 110, defOver, defBack, defBorder); menu[2][1] = new Item('Madanews', 'http://www.madanews.com/', defHeight, 0); menu[2][2] = new Item('Linux', 'http://linuxmg.org/spip/', defHeight, 0); menu[2][3] = new Item('Croissance', 'http://www.croissance.com/', defHeight, 0); menu[2][4] = new Item('Ravinala', 'http://ravinala.online.fr/', defHeight, 0);  menu[3] = new Array(); menu[3][0] = new Menu('diversMenu', 0, 22, 100, defOver, defBack, defBorder); menu[3][1] = new Item('Madafm', 'http://www.madafm.net/', defHeight, 0); menu[3][2] = new Item('HitParade', 'http://hitparade.madafm.net/', defHeight, 0); menu[3][3] = new Item('Dts', 'http://www.dts.mg/index.html', defHeight, 0); // Non-zero target means this will trigger a popup. menu[3][4] = new Item('Guide', 'http://www.madagascar-guide.com/index.html', defHeight, 6);  menu[4] = new Array(); menu[4][0] = new Menu('tourismeMenu', 0, 22, 105, defOver, defBack, defBorder); menu[4][1] = new Item('Le Zoma', 'http://www.zoma.com/zomasom.html', defHeight, 0); menu[4][2] = new Item('Madatours', 'http://www.madatours.com/', defHeight, 0); menu[4][3] = new Item('Madanet', 'http://www.madanet.com/', defHeight, 0); menu[4][4] = new Item('Artisanat', 'http://www.aston-mg.com/emsf/', defHeight, 0);  menu[4][5] = new Item('Radio Don Bosco', 'http://www.radiodonbosco.mg/html/HomePage.htm', defHeight, 5);    menu[5] = new Array(); // This is across but not down... a horizontal popout (with crazy colours :)... menu[5][0] = new Menu('reopenMenu', 85, 0, 110, '#ff1493', '#666699', '#663399'); menu[5][1] = new Item('Gifts', 'http://www.nmafa.si.edu/exhibits/malagasy/index.html', 36, 0); menu[5][2] = new Item('Imerina', 'http://www.freespeech.org/iarivo/imerina/index.htm', 40, 0); menu[5][3] = new Item('Photothque', 'http://www.gasikara.net/Photo.htm', defHeight, 0);  menu[6] = new Array(); // Leftwards popout with a negative x relative to its trigger. menu[6][0] = new Menu('aboutMenu', -85, -15, 80, 'deeppink', '#666699', defBorder); menu[6][1] = new Item('Ampela<br>Soa !', 'http://www.heart-of-asia.com/least/mada01.html', 30, 0);  // Now, this next bit of script will write our own custom root menu -- a horizontal // one, as the defaults are all vertical with borders. Even if you are writing your // own root menu, you must still specify the names, colours and targets above -- the // positions are calculated on the fly and hence are ignored. // Basically, you must duplicate the output of the writeMenus() function. Just work // from this example. // Syntax: startDL('id', x, y, width, height, 'visibility', '#background colour or null //for transparent', '#border colour or null for no border', 'additional properties'); // It returns a string of HTML text comprising the opening tag of a div or layer. // mouseProps(menu, item) returns the 'onMouseEvent' properties for a specific menu item, // passed as 'additional properties' to startDL. Just cut and paste below, or allow the // script to write its own root menu. // endDL is a variable containing either '</div>' or '</layer>', so add it afterwards. newRoot = startDL('rootMenu', 0, 0, '100%', 25, 'hidden', '#ffc0cb', null, 100, ''); newRoot += startDL('rootMenu1', 50, 0, 150, 17, 'inherit', '#ffc0cb', null, 100, mouseProps(0, 1)); newRoot += '<span class="Item">  Association</span>' + endDL; newRoot += startDL('rootMenu2', 195, 0, 150, 17, 'inherit', '#ffc0cb', null, 100, mouseProps(0, 2)); newRoot += '<span class="Item">  Points de Vue</span>' + endDL; newRoot += startDL('rootMenu3', 340, 0, 150, 17, 'inherit', '#ffc0cb', null, 100, mouseProps(0, 3)); newRoot += '<span class="Item">  Loisirs</span>' + endDL; newRoot += startDL('rootMenu4', 420, 0, 150, 17, 'inherit', '#ffc0cb', null, 100, mouseProps(0, 4)); newRoot += '<span class="Item">  Guide</span>' + endDL;  newRoot += endDL; // Pass this two strings - the first is HTML to write a custom root menu, or null to // generate one normally. The second is the popout indicator HTML - try an image...? // Try writeMenus(null, '<img src="...">'); in your own script. writeMenus(newRoot, '>'); // This is a quick snippet that captures all clicks on the document and hides the menus // every time you click. Use if you want. if (isNS4) document.captureEvents(Event.CLICK); document.onclick = clickHandle; function clickHandle(evt) { if (isNS4) document.routeEvent(evt); hideAllBut(0); } // Show root menu command - place in an onLoad="..." type function if you want. eval(docObj + menu[0][0].id + styObj + '.visibility = "visible"'); // This is just the moving command for the example. function moveRoot() { rM = eval(docObj + menu[0][0].id + styObj); if (parseInt(rM.top) < 40) rM.top = 40; else rM.top = 0; } //  End --> </SCRIPT> </BODY></HTML>      <HTML> <HEAD> <TITLE>Dago . Net - Site.htm </TITLE>   <!---Dbut Script Info Bulle--->  <!----Info Bulle--->  <html> <head> <title>Info Bulle</title> </head> <body> <script language="JScript">   document.onmouseover = debdagonet; document.onmouseout = findagonet;  function debdagonet() {  self.status = ""; var src = event.srcElement;  if(src.tip){ var y = src.offsetTop + src.offsetHeight; //reglez le haut de la bulle au fond du src  document.body.insertAdjacentHTML('beforeEnd', '<div id="zTip" style="visibility: visible; z-index: 10; background-color: #FFFFFF; position: absolute; font-Size: 10pt; border: 1 solid blue; color: navy; background-color: cyan">' + src.tip + '</div>');  with(zTip){ style.posTop = y + 14; style.posLeft = window.event.x + 10; visibility = 'visible'; style.width = src.tip.length * 1.5; //<--(inserez ce code si vous avez des frames)document.body.offsetWidth - style.posLeft * 2; } }  } //fin debdagonet;  function findagonet(){  var src = event.srcElement;  if (src.tip) { zTip.innerHTML = ""; zTip.outerHTML = ""; }  } //fin findagonet;  //--> </script>    <!---Fin du  Script Info Bulle--->    </HEAD> <BODY>  <BODY BACKGROUND="Fds-Colector.jpg">  <P> <A HREF="Citemz.htm" target="Texte"><IMG SRC="Dagonetor25a.gif" align="left" border="0" tip="&lt;center&gt; 			Vous tes sur Dago . Net , l ' un des Sites de Gasikara.Net&copy. 			Site Palmars des Meilleurs Sites sur Madagascar . 			&lt;br&gt;http://www.dagonet.fr.st/ 			&lt;/center&gt;"> 			</A>    <FONT COLOR="yellow">Cotation des Sites :<br> <IMG SRC="Pucetoile.gif"> Pas Mal ! ~ <IMG SRC="Pucetoile.gif"><IMG SRC="Pucetoile2.gif"> A Voir ! ~ <IMG SRC="Pucetoile.gif"><IMG SRC="Pucetoile2.gif"><IMG SRC="Pucetoile1.gif">A Visiter Absolument ! </FONT COLOR> </P>     <!---Moteur de Recherche Interne--->  <!--Part2---> <HTML><HEAD><TITLE>Recherchexpress.htm</TITLE> <SCRIPT language=Javascript> function callsearch(){ searchwords=document.searchform.searchwords.value.toLowerCase(); while (searchwords.indexOf(" ")>-1)  { pos=searchwords.indexOf(" "); searchwords=searchwords.substring(0,pos)+"+"+ searchwords.substring(pos+1);  } location="http://www.gasikara.net/Recherche.htm?keywords="+searchwords+"&and=0";  }  </SCRIPT> </HEAD> <BODY> <TABLE>     <table border="0" cellspacing="0"> <td>  <IMG SRC="Allo20asso.gif"></TD>      <td>&nbsp;&nbsp;&nbsp;&nbsp;</td>             <td colspan="1" BODY BACKGROUND="Fds-Colector.jpg"  width=250 height=15><B><font color="aqua">  <CENTER> <FORM action=javascript:callsearch(); method=post name=searchform><INPUT  name=searchwords size=18> <INPUT onclick=javascript:callsearch() type=button value=Chercher>   </STRONG></FONT></TD></TR></TABLE>     <IMG SRC="Bareinca.gif">    <P> <CENTER>  <html>  <head>  <title>Gasikara-Net</title>  <style TYPE="text/css"> <!--  A:hover {color:#FFFFFF;} --> </style>   </head>  <body bgcolor="#ADD8E6" text="#FFFFFF" link="#36366D" vlink="#36366D" topmargin="10" leftmargin="5" onUnload="ByeWin()">  <script language="JavaScript"><!-- browserName = navigator.appName; browserVer = parseInt(navigator.appVersion); if ( ((browserName == "Netscape") && (browserVer >= 3))| ((browserName == "Microsoft Internet Explorer") && (browserVer>=4))) version = "n3+" else version = "x"; if (version == "n3+") {  // Im  im0on = new Image; im0on.src = "Assoc.gif"; im1on = new Image; im1on.src = "Pdvt.gif"; im2on = new Image; im2on.src = "Touri.gif";   im0off = new Image; im0off.src = "Asso.bmp"; im1off = new Image; im1off.src = "Pdv.bmp"; im2off = new Image; im2off.src = "Toura.bmp";    } function img_act(imgName) { if (version == "n3+") { imgOn = eval(imgName + "on.src"); document [imgName].src = imgOn; }; } function img_inact(imgName) { if (version == "n3+") { imgOff = eval(imgName + "off.src"); document [imgName].src = imgOff; }; } //--> </script>   <div align="center"><center>   <a href="Citema.htm"      onmouseover="img_act('im0'); window.status='Association'; return true"     onmouseout="img_inact('im0'); window.status=defaultStatus; return true"><img     src="Asso.bmp" alt="Les Sites  Caractre Associatif" border="0" width="200"     height="45" name="im0"></a>      <a href="Citemb.htm"      onmouseover="img_act('im1'); window.status='Les News Malgaches'; return true"     onmouseout="img_inact('im1'); window.status=defaultStatus; return true"><img     src="Pdv.bmp" alt="Les Sites des News et d 'Opinions Malgaches" border="0" width="200" height="45"     name="im1"></a>      <a href="Citemc.htm"      onmouseover="img_act('im2'); window.status='Le Tourisme'; return true"     onmouseout="img_inact('im2'); window.status=defaultStatus; return true"><img     src="Toura.bmp" alt="Le Catalogue des Sites de Tourisme" border="0" width="200" height="45" name="im2"></a></td>           </SCRIPT> </table> </center></div>   </SCRIPT></IFRAME> </body> </html>      </CENTER></P>    <IMG SRC="Ad.gif" align="left">     	<UL>        			<A HREF="http://www.gasikara.net/Historama.htm"  			target="Texte"> <IMG SRC="Puce4.gif" border=0 tip="&lt;center&gt; 			Une Page Spciale sur l'Histoire de Madagascar : Une Chronologie Historique 			trs Dtaille &lt;br&gt;Historama.htm 			&lt;br&gt; 			Entre du Samedi 26 Juin 2000  			&lt;/center&gt;"></A> 			&nbsp;<B><font color="cyan">  Histoire de Madagascar :  			&nbsp;Chronologie &nbsp;Historique    . </font></B></A></A>     			  			<BR><BR>  			    			   			<A HREF="http://perso.wanadoo.fr/thierry.rarison/" target="blank"> 			<IMG SRC="Puce4.gif" border=0 tip="&lt;center&gt; 			Des Fichiers Midi Malgaches  , 			&lt;br&gt; 			 Et d'Ailleurs 			&lt;br&gt;http://perso.wanadoo.fr/thierry.rarison/ 			&lt;br&gt; 			Entre du Vendredi 16 Juin 2000 			&lt;/center&gt;"></A> 			&nbsp;<B><font color="cyan">Des Fichiers Midi Malgaches   			  . -  </font></B> 			<BR><BR>    			<A HREF="http://www.tonga-soa.com/ht/pa2.html" target="blank"> 			<IMG SRC="Puce4.gif" border=0 tip="&lt;center&gt; 			Des Petites Annonces Malgaches , 			&lt;br&gt;http://www.tonga-soa.com/ht/pa2.html 			&lt;br&gt; 			 Et Bien d'Autres Choses Encore, Par Exemple des Rencontres 			&lt;br&gt; 			Entre du Vendredi 2 Juin 2000 			&lt;/center&gt;"></A> 			&nbsp;<B><font color="cyan">Des Petites Annonces Malgaches ,  			 Et Bien d'Autres Choses Encore . -  <IMG SRC="Pucetoile.gif"><IMG SRC="Interet12flamin.gif"></font></B> 			<BR><BR>    	 		   			<A HREF="http://perso.wanadoo.fr/tiana.razanatefy/principal.html" target="blank"><IMG SRC="Puce4.gif" border=0 			tip="&lt;center&gt; 			Une Galerie de Peintures du Peintre Jean Michel Razanatefy . 			Vous Pouvez Admirer mais aussi Acqurir Certaines Toiles Prsentes . 			&lt;br&gt;http://perso.wanadoo.fr/tiana.razanatefy/principal.html 			&lt;br&gt; 			Entre du Vendredi 31 Dcembre 1999 			&lt;/center&gt;"></A>	 			&nbsp;<B><font color="cyan">Site Consacr 			&nbsp; au Peintre Razanatefy . -  </font></B><IMG SRC="Pucetoile.gif"> 			<IMG SRC="Pucetoile2.gif"><IMG SRC="Avisiter12flamin.gif"> 			<BR><BR>    			  				   			<A HREF="http://roland.ratsimiseta.free.fr/madasite/" target="blank"><IMG SRC="Puce4.gif" border=0 			tip="&lt;center&gt; 			Prsentation Synthtique &  Multiple de Madagascar , 			Une Bonne Introduction pour Connatre le Pays. 			Site Dvelopp sous Flash 4.0 			&lt;br&gt;http://www.mada-site.fr.st/ 			&lt;br&gt; 			Entre du Dimanche 29 Avril 2001  			&lt;/center&gt;"></A>			 			&nbsp;<B><font color="cyan">Mada ~Site : Prsentation Synthtique et   			Multiple de Madagascar :&nbsp; .-  </font></B><IMG SRC="Pucetoile.gif"><BR><BR>     			<A HREF="http://ngmalgache.free.fr/" target="blank"><IMG SRC="Puce4.gif" border=0 			tip="&lt;center&gt; 			Site Web d'une Jeune Association Malgache , 			Des Jeunes Qui Oeuvrent pour le Dveloppement ; 			Mais On y Dcouvre Egalement des Articles et des Photos Varis de leurs Actions. 			&lt;br&gt;http://ngmalgache.free.fr/ 			&lt;br&gt; 			Entre du Mercredi 5 Avril 2000  			&lt;/center&gt;"></A>			 			&nbsp;<B><font color="cyan">Nouvelle Gnration de Madagascar :&nbsp; 			Site Web d'Association Humanitaire  			Destination de  Madagascar &nbsp;  . -  </font></B><IMG SRC="Pucetoile.gif"><BR><BR>    			   			<A HREF="http://www.croissance.com/" target="blank"><IMG SRC="Puce4.gif" border=0 			tip="&lt;center&gt; 			Site  Caractre Associatif & Commercial    			Rendant Comptes des Evnements Malgaches Parisiens  : Photos,  			Production de Musique....  			&lt;br&gt;http://www.croissance.com/ 			&lt;br&gt; 			Entre du Samedi 14 Avril 2001  			&lt;/center&gt;"></A>	 			&nbsp;<B><font color="cyan"> 			Croissance . com : Site Malgache de Paris . -   			</font></B><IMG SRC="Pucetoile.gif"><BR><BR>    			  			<A HREF="http://www.madanet.com" target="blank"><IMG SRC="Puce4.gif" border=0 			tip="&lt;center&gt; 			Site Promotionnelle : 			Dcouverte  Gographique , Culturelle , Artisanale... 			de Madagascar . 			&lt;br&gt;http://www.madanet.com 			&lt;br&gt; 			Entre du Samedi 27 Novembre 1999  			&lt;/center&gt;"></A> 			&nbsp;<B><font color="cyan">Autre Prsentation de Circuit Touristique 			de  Madagascar &nbsp;  . -  </font></B><BR><BR>   			<A HREF="http://www.multimania.com/lemurie" target="blank"><IMG SRC="Puce4.gif" border=0 			tip="&lt;center&gt; 			Pour les Fanas de l'Information Censure,  			Ce Site  Mrite Toute  Votre Attention: 			Un Cri de Libert . Dommage  qu' Il n'y ait plus de Mise  Jour ! 			&lt;br&gt;http://www.multimania.com/lemurie/ 			&lt;br&gt; 			Entre du Jeudi 13 Mai 1999  			&lt;/center&gt;"></A> 			&nbsp;<B><font color="cyan">Le Cri du L&eacute;murien 			&nbsp;: &nbsp;Les Potins de  Madagascar  . -  </font></B><IMG SRC="Pucetoile.gif"><BR><BR>     			<A HREF="http://ravinala.online.fr/" target="blank"><IMG SRC="Puce4.gif" border=0 			tip="&lt;center&gt; 			Le Site de Ravinala :	 			Site Mi-Commercial , Mi-Grand Public sur Madagascar			 			&lt;br&gt;http://ravinala.online.fr/ 			&lt;br&gt; 			Entre du Samedi 22 Janvier 2000  			&lt;/center&gt;"></A> 			&nbsp;<B><font color="cyan"> 			Ravinala Online &nbsp;:&nbsp; 			Un des Premiers Sites Ddis  Madagascar sur le Web.-  </font></B>  			<BR><BR>    			<A HREF="http://www.ird.mg/commune/alasora" target="blank"><IMG SRC="Puce4.gif" border=0 			tip="&lt;center&gt; 			Lorsque l'On imagine ce que reprsente un Site Web 			Pour une Ville . Le Site Web d' Alasora , une petite Bourgade de Tana 			est une  russite . Un Grand Bravo  et toutes nos 			Flicitations pour cette Ville et  son Equipe de Webmasters . 			&lt;br&gt;http://www.ird.mg/commune/alasora 			&lt;br&gt; 			Entre du Mardi 28 Dcembre 1999  			&lt;/center&gt;"></A> 			&nbsp;<B><font color="cyan">Site Pittoresque 			&nbsp; Entirement Consacr  			<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 			 la Petite Commune d'Alasora aux environs de Tananarive . -   			</font></B><IMG SRC="Pucetoile.gif"><IMG SRC="Pucetoile2.gif"><BR><BR>    			<A HREF="http://mcar.cjb.net/" target="blank"><IMG SRC="Puce4.gif" border=0 			tip="&lt;center&gt; 			Moteur de Recherche Trs Professionnel Ralis  			Par un Ingnieur Informaticien Made in Madagascar . 			Par Contre pour la Connexion , Ayez Beaucoup d'Indulgence 			Car l'Hbergeur se trouve  Madagascar .			  			&lt;br&gt;http://mcar.cjb.net/ 			&lt;br&gt; 			Entre du Vendredi 6 Janvier 2000  			&lt;/center&gt;"></A>	 			&nbsp;<B><font color="cyan">Un Moteur de Recherche 			bien Sympathique sur &nbsp; Madagascar &nbsp;  . -  			</font></B><IMG SRC="Pucetoile.gif">  			<BR><BR>    			 			    			<A HREF="http://perso.club-internet.fr/a_louvet/index.htm" target="blank"> 			<IMG SRC="Puce4.gif" border=0 tip="&lt;center&gt; 			Encore une srie de Photos  Autour des Grandes Villes  			de Madagascar : 			Une Bonne Ralisation , de Belles Images; et des  			Interfaces Conviviaux.  			&lt;br&gt;http://perso.club-internet.fr/a_louvet/index.htm 			&lt;br&gt; 			Un Site Arodynamique , Qui dcoiffe ! 			&lt;br&gt; 			Entre du Samedi 26 Fvrier 2000 			&lt;/center&gt;"></A> 			&nbsp;<B><font color="cyan">Carnet de Voyage de  			  Madagascar&nbsp;: Un Site Qui Dcoiffe . -  </font></B> 			<BR><BR>   			 			<A HREF="http://www.geocities.com/seragasy/" target="blank"> 			<IMG SRC="Puce4.gif" border=0 tip="&lt;center&gt; 			Site Officiel du Forum de Discussions des Internautes Malgaches   , 			&lt;br&gt; 			 Pour les Curieux ou pour s'y Inscrire 			 &lt;br&gt; 			 Le Site  a  le Mrite d'Exister 			&lt;br&gt;http://www.geocities.com/seragasy/ 			&lt;br&gt; 			Entre du Samedi 1 Janvier 2000 			&lt;/center&gt;"></A> 			&nbsp;<B><font color="cyan">Serasera - Site du Forum de Discussions des Internautes Malgaches 			  . -  </font></B> 			<BR><BR>   			<A HREF="http://www.freespeech.org/iarivo/imerina/index.htm" target="blank"> 			<IMG SRC="Puce4.gif" border=0 tip="&lt;center&gt; 			Site Qui Revendique la Mernitude  ,  'les  Dessous des Cartes ' de la Gopolitique Malgache 			&lt;br&gt; 			 Incisif & Alarmant : A Visiter Pour les Personnes 			 &lt;br&gt; 			 Qui  Veulent s'Informer sur le Microcosme Malgache 			&lt;br&gt;http://www.nosyarivo.com/vk.htm 			&lt;br&gt; 			Entre du Samedi 13 Mai 2000 			&lt;/center&gt;"></A> 			&nbsp;<B><font color="cyan">Feon'ny Merina  : Madagascar d'Hier & d'Aujourd'Hui : 			<BR>&nbsp;&nbsp; 			&nbsp;&nbsp; &nbsp; &nbsp;  Un Cri d'Alarme d'un Peuple en Dtresse  			  . -  </font></B><IMG SRC="Pucetoile.gif"> 			<BR><BR>   			<A HREF="http://www.ifrance.com/avana" target="blank"><IMG SRC="Puce4.gif" border=0 			tip="&lt;center&gt; 			Site Associatif 			d ' Entraide Pour Madagascar 			 			&lt;br&gt;http://www.ifrance.com/avana 			&lt;br&gt; 			Entre du Lundi 16 Avril 2001  			&lt;/center&gt;"></A> 			&nbsp;<B><font color="cyan">Site d' Entraide  Destination 			de  Madagascar &nbsp;  . -  </font></B><BR><BR>  			       			<BR><BR><BR>            <!--- Sites Particuliers--->        			<FONT SIZE=+2><FONT COLOR="deepskyblue">Les Sites de Gasikara . Net </FONT COLOR></FONT SIZE> 			&nbsp;<IMG SRC="Barespot.gif"> 			<BR><BR>        			<A HREF="http://www.gasikara.net/" target="blank"><IMG SRC="Puce4.gif" border=0 target="blanck"></A>&nbsp;<B><font color="cyan"> 			Gasikara . Net . -  </font></B><BR><BR>      			<!---<A HREF="http://www.respublica.fr/dagoweb/Index.htm" target="blank"><IMG SRC="Puce4.gif" border=0></A>&nbsp;<B><font color="cyan"> 			Dagoweb . -  </font></B><BR><BR>---->   			<A HREF="http://www.multimania.com/esayenjinn/index.htm" target="blank"><IMG SRC="Puce4.gif" border=0></A>&nbsp;<B><font color="cyan"> 			Page Perso de Christophe Ragomaharisoa . -  </font></B><BR><BR>   			<A HREF="http://www.luke-sky.fr.st/" target="blank"><IMG SRC="Puce4.gif" border=0></A>&nbsp;<B><font color="cyan"> 			Page Perso de Luc Ragomaharisoa . -  </font></B><BR><BR>  			   			<IMG SRC="Barelum.gif"><BR><BR> 			    	 		</UL>  	 </P>		      <P> <A HREF="http://www.gasikara.net/Menu.htm"><IMG SRC="Sehatranime.gif" border=0><ALIGN=LEFT></A> &nbsp;&nbsp;&nbsp;       <A HREF="http://www.gasikara.net/Music.htm" target="Texte"><B><font color="deepskyblue">La Musique  Malgache </B></font></A><BR> </P>   <P><IMG SRC="Puce3.gif">&nbsp<B><A HREF="http://www.gasikara.net/Akama.htm" title="Pour Adhrer  notre Club  " target="Texte"><IMG SRC="Jazz.gif"></A> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    <A HREF="http://www.gasikara.net/Liens.htm" target="Texte"><B><font color="deepskyblue">Bemiray</font></B></A> 			&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   <A HREF="Auteur.htm" target="Texte"><B><font color="deepskyblue">Webmasters</font></B></A>  <A HREF="http://ylang.gasikara.free.fr/Site.htm" target="Texte"><IMG SRC="Jukeor35.gif" border=0></A> 	 <A HREF="http://www.gasikara.net/Menu.htm" target="Texte"><IMG SRC="Bg301.GIF"></A>  <A HREF="http://ylang.gasikara.free.fr/Site.htm" target="Texte"><IMG SRC="Dmxb.GIF" ></A>  <A HREF="Citemz.htm" target="Texte"><IMG SRC="Dnv50.GIF" ></A>  	<BR>   	</P>	  <IMG SRC="Bareinca.gif">   <A HREF="http://www.gasikara.net/Photo.htm"><IMG SRC="Logos.gif" border=0 tip="&lt;center&gt; 	En entrant ici , Vous visionnerez  des images  	de Madagascar .   	&lt;br&gt;http://www.gasikara.net/Photo.htm 	&lt;/center&gt;"  align="left"></A>        <CENTER><A HREF="http://www.gasikara.net/Menu.htm" border="0" TARGET="Texte"> <IMG SRC="Planisfere.gif" border="0" tip="&lt;center&gt; 	Direction Vers Notre Site Principal 	Gasikara . Net  	&lt;br&gt;http://www.gasikara.net/ 	&lt;/center&gt;" ></A></CENTER>   <IMG SRC="4x4.gif"> <BR> <IMG SRC="Sepabare.gif"> <BR>  <!--Livre d'Or de Guestbookdepot.com en UK-->    <P> <FONT COLOR="CYAN"> <a href="http://www.guestbookdepot.com/cgi-bin/guestbook.cgi?book_id=46006" target="_blank">  <img src="Dnw3.gif"  align="left" border=0 tip="&lt;center&gt; 	Le Livre d' Or 	Commun  nos Sites Dagomozika & Dago . Net !  	&lt;br&gt; 	&lt;/center&gt;"  align="right"></A>   Faites un Tour sur Notre Livre  d'Or & Livrez nous vos Impressions .  </FONT COLOR>    <!---Fin du Livre d'Or---> <BR>   <IMG SRC="Boules.gif">&nbsp;<FONT COLOR="CYAN">Les Adresses  Enum&eacute;r&eacute;es ci-dessus Peuvent tre Retir&eacute;es sans Pr&eacute;avis suivant le Palmar&egrave;s des Sites . </P>   <CENTER>  <A HREF="http://www.gasikara.net/Menu.htm"  			target="Texte"> <IMG SRC="Logo.gif" border=0 tip="&lt;center&gt; 			Vers Gasikara . net : le Site Matre  			de Dago . net &lt;br&gt; Merci de Votre Visite 			&lt;br&gt; 			http://www.gasikara.net/ 			&lt;/center&gt;"></A></CENTER>   <BR> <HR><!--Compteur de www.compteur.com du 27/11/99 Cpte N19258 Gasikara.net-->  <!--<IMG SRC="http://www.compteur.com/cgi-bin/compteur.cpt?ID=19258&num=2">--->  <!--Fin Programme Compteur -->    <script src="http://hit.allstats4u.com/tracker.js"></script> <script> Count('Dagonet','4','2'); </script>   <P align="right"> Copyright Juillet 1999  ~ Dago.Net&copy;  ~ .- </P></FONT COLOR>  </BODY>  </HTML>      </BODY> </HTML> 
