 <HTML>  <HEAD> <TITLE>Citemb.htm-Dagonet</TITLE>  <STYLE> BODY { scrollbar-face-color: #006699; scrollbar-shadow-color: #003366; scrollbar-highlight-color:  #A4E1FF; scrollbar-3dlight-color: #000000; scrollbar-darkshadow-color: #003366;  scrollbar-track-color: #93AFC4; scrollbar-arrow-color: #A4E1FF;  } </STYLE>  </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('Newsgroup', 'http://www.mailgate.org/soc/soc.culture.malagasy/', defHeight, 0);  menu[2] = new Array(); menu[2][0] = new Menu('pdtvMenu', 0, 22, 110, defOver, defBack, defBorder); menu[2][1] = new Item('Express', 'http://www.lexpressmada.com/', defHeight, 0); menu[2][2] = new Item('Dsespoir', 'http://www.multimania.com/lemurie/', defHeight, 0); menu[2][3] = new Item('Croissance', 'http://www.croissance.com/', defHeight, 0); menu[2][4] = new Item('Jean-Laborde', 'http://www.madagascar-contacts.com/laborde/', 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('Musique', 'http://perso.wanadoo.fr/thierry.rarison/', defHeight, 0); // Non-zero target means this will trigger a popup. menu[3][4] = new Item('Vitrine', 'http://www.madagascar-contacts.com/sodiat/', defHeight, 6);  menu[4] = new Array(); menu[4][0] = new Menu('tourismeMenu', 0, 22, 105, defOver, defBack, defBorder); menu[4][1] = new Item('Afrik.com', 'http://www.afrik.com/porte/naviporte/madagascar.htm', 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('Dcollage', 'http://perso.club-internet.fr/a_louvet/index.htm', defHeight, 0);  menu[4][5] = new Item('Nos Villes', 'http://www.madagascar-contacts.com/carte.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('Mada-cartes', 'http://www.madagascarte.com/', 36, 0); menu[5][2] = new Item('Lakrao', 'http://www.geocities.com/lakroam', 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('La Chanteuse!<br>Poopy!', 'http://www.multimania.com/schmilblik/index.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">  Tourisme</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> <!-- Fin Script Barre Navigation --></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. 			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="Allo20ptv.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-Noel</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="Pd.gif" align="left">      	<UL>   			<A HREF="http://www.dts.mg/midi/" target="blank"><IMG SRC="Puce4.gif" border=0 tip="&lt;center&gt; 			Un des Grands Quotidiens Malgaches sur le Web : Mise  Jour Quotidienne ; 			Rsumant Trs Bien l'Actualit de l'Ile . 			&lt;br&gt;http://www.dts.mg/midi/ 			&lt;br&gt; 			Entre du Dimanche 4 Juillet 1999 			&lt;/center&gt;"></A> 			&nbsp;<B><font color="cyan">Les Infos Malgaches  			en Ligne :&nbsp; Le Site du Journal&nbsp; 			<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 			Midi&nbsp; Madagascar. -  </font></B> 			<IMG SRC="Pucetoile.gif"><IMG SRC="Pucetoile2.gif"> 			<IMG SRC="Pucetoile1.gif"><IMG SRC="Avoir12flamin.gif"> 			<BR><BR>  			   			<A HREF="http://www.iquebec.com/sirko" target="_blank"><IMG SRC="Puce4.gif" border=0 			tip="&lt;center&gt; 			Le Site d'un Jeune Journaliste Malgache qui Comporte Plusieurs  Rubriques .  			Le Site manque un peu de piment mais il est bien cibl. 			&lt;br&gt;http://www.iquebec.com/sirko 			&lt;br&gt; 			Entre du Samedi 26 Aot 2000 			&lt;/center&gt;"></A>	 			&nbsp;<B><font color="cyan">Site D'un Jeune 			&nbsp;Journaliste Malgache - Conu et Anim depuis Madagascar. -</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"></font></B> 			<BR><BR>   	  			  			<A HREF="http://www.multimania.com/hanta/"  			target="Texte"> <IMG SRC="Puce4.gif" border=0 tip="&lt;center&gt; 			Le Site de La Chanteuse Hanta 			& A La Dcouverte de Madagascar &lt;br&gt;http://www.multimania.com/hanta/ 			&lt;br&gt; 			Entre du Lundi 16 Avril 2001  			&lt;/center&gt;"></A> 			&nbsp;<B><font color="cyan"> Le Site de la Chanteuse   			&nbsp;Hanta : &nbsp;Une Nouvelle Gnration d'Artiste    . </font></B></A></A>     			<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"><BR><BR>    					   			<A HREF="http://www.multimania.com/schmilblik/index.html" target="blank"><IMG SRC="Puce4.gif" border=0 			tip="&lt;center&gt; 			Site Ddi   la Chanteuse Poopy , 			Mis  sur le Web par un Admirateur Inconditionnel de l'Artiste . 			&lt;br&gt;http://www.multimania.com/schmilblik/index.html 			&lt;br&gt; 			Entre du Samedi 25 Septembre 1999  			&lt;/center&gt;"></A>			 			&nbsp;<B><font color="cyan">Site Mis en Oeuvre  			depuis Madagascar :&nbsp; Site Consacr  la Chanteuse Poopy. -  </font></B><IMG SRC="Pucetoile.gif"><BR><BR>     			  			   			<A HREF="http://www.guetali.fr/home/maherm/default_gasy.htm" target="blank"><IMG SRC="Puce4.gif" border=0 			tip="&lt;center&gt; 			Site Trilingue Mis en Oeuvre de la Runion  			Qui Couvre la Culture  des Iles de l'Ocan Indien  : Photos,  			Production de Musique....  			&lt;br&gt;http://www.guetali.fr/home/maherm/default_gasy.htm 			&lt;br&gt; 			Entre du Samedi 2 Octobre 1999  			&lt;/center&gt;"></A>	 			&nbsp;<B><font color="cyan"> 			Site Runionnais sur Madagascar . -   			</font></B><IMG SRC="Pucetoile.gif"><BR><BR>   			<A HREF="http://www.mcai.org/music.htm" target="blank"><IMG SRC="Puce4.gif" border=0 			tip="&lt;center&gt; 			Site en Anglais & en Malgache ,  situ 			en Amrique du Nord . Prsentation assez Sommaire  			de la Discographie  Malgache   . 			A vous d'en Juger ! 			&lt;br&gt;http://www.mcai.org/music.htm 			&lt;br&gt; 			Entre du Dimanche 5 Dcembre 1999  			&lt;/center&gt;"></A>	 			&nbsp;<B><font color="cyan"> 			Discographie sur les Artistes de  Madagascar . -  </font></B><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://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://www.madanews.com/" target="blank"><IMG SRC="Puce4.gif" border=0 			tip="&lt;center&gt; 			Prsentation sous forme de Pages Web  			de l 'Information sur Madagasacar : 			informations bien fournies et tous azimuts  			 retenir l'information conomique trs dtaille  ! 			&lt;br&gt;http://www.madanews.com/ 			&lt;br&gt; 			Entre du Dimanche 23 Janvier 2000  			&lt;/center&gt;"></A>	 			&nbsp;<B><font color="cyan"> 			Madanews : Une Information Complte sur Madagascar . -  </font></B> 			<IMG SRC="Pucetoile.gif"><IMG SRC="Pucetoile2.gif"> 			<BR><BR>    			<A HREF="http://www.havana-news.com/" target="blank"><IMG SRC="Puce4.gif" border=0 			tip="&lt;center&gt; 			Un Magazine d'Information Malgache sur le Web . 			Quelques Analyses Bien Cibles . 			&lt;br&gt;http://www.havana-news.com/ 			&lt;br&gt; 			Entre du Vendredi 8 Dcembre 2000  			&lt;/center&gt;"></A>	 			&nbsp;<B><font color="cyan"> 			Ny Havana-News : Les Actualits Malgaches en Ligne . -  </font></B> 			<IMG SRC="Pucetoile.gif"><IMG SRC="Pucetoile2.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.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>  			 			<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.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://come.to/lucrago" 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" title="Vers le Menu de Gasikara.net&copy;"><IMG SRC="Sehatranime.gif" border=0><ALIGN=LEFT></A> &nbsp;&nbsp;&nbsp;     <IMG SRC="Puce3.gif">&nbsp<B><A HREF="http://www.gasikara.net/Akama.htm" title="Pour s'inscrire  notre Club" target="Texte"><IMG SRC="Jazzy-anime.gif"></A> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    			&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  	<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/" border="0" TARGET="_blank"> <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/"  			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>  <script src="http://hit.allstats4u.com/tracker.js"></script> <script> Count('Dagonet','4','3'); </script>   <P align="right"> Copyright Juillet 1999  ~ Dago.Net&copy;  ~ .- </P></FONT COLOR>  </BODY>  </HTML>      </BODY> </HTML> 
