function Navighoriz(pays,dossier)

{

	var h="";

	

	if(dossier > 0)	//on est dans un dossier on affiche pas les "pays/" mais on recule d'un cran

	{

		var lien0 ="";

		var lien = "";

		for(i=0;i<dossier;i++)

		{

			lien0 += "../";

		}

		if(dossier == 1)

		{

			lien = "";

		}

		else

		{

			for(i=0;i<dossier-1;i++)

			{

				lien += "../";

			}

		}

	}

	else

	{	

		var lien0 = "";

		var lien = pays+"/";

	}



//on affiche le lien de la bonne couleur

		  

	

	if(pays == "Guadeloupe")

	{

		h += "<b><a href='/Guadeloupe/location_villa_guadeloupe.html'><u><font color=red>Guadeloupe</font></u></a>";

	}

	else

	{

		h += "<b><a href='/Guadeloupe/location_villa_guadeloupe.html'><u>Guadeloupe</u></a>";

	}

	

	if(pays == "Martinique")

	{

		h += " - <a href='/Martinique/location_villa_martinique.html'><u><font color=red>Martinique</font></u></a>";	

	}

	else

	{

		h += " - <a href='/Martinique/location_villa_martinique.html'><u>Martinique</u></a>";

	}

	

	/*if(pays == "Marie_galante")

	{

		h += " - <a href='/Marie_galante/location_villa_marie_galante.html'><u><font color=red>Marie Galante</font></u></a>";

	}

	else

	{

		h += " - <a href='/Marie_galante/location_villa_marie_galante.html'><u>Marie Galante</u></a>";

	}*/

	

	if(pays == "Saintes")

	{

		h += " - <a href='/Saintes/location_villa_saintes.html'><u><font color=red>Les Saintes</font></u></a>";	

	}

	else

	{

		h += " - <a href='/Saintes/location_villa_saintes.html'><u>Les Saintes</u></a>";

	}

	

	if(pays == "Saint_martin")

	{

		h += " - <a href='/Saint_martin/location_villa_saint_martin.html'><u><font color=red>Saint Martin</font></u></a>";

	}

	else

	{

		h += " - <a href='/Saint_martin/location_villa_saint_martin.html'><u>Saint Martin</u></a>";

	}

	

	if(pays == "Saint_barth")

	{

		h += " - <a href='/Saint_barth/location_villa_saint_barth.html'><u><font color=red>Saint Barth</font></u></a>";

	}

	else

	{

		h += " - <a href='/Saint_barth/location_villa_saint_barth.html'><u>Saint Barth</u></a>";

	}
	
	
	if(pays == "Repu_domi")

	{

		h += " - <a href='/Repu_domi/location_villa_Repu_domi.html'><u><font color=red>République Dominicaine</font></u></a></b>";

	}

	else

	{

		h += " - <a href='/Repu_domi/location_villa_Repu_domi.html'><u>République Dominicaine</u></a></b>";

	}



	document.write(h);

}