function Lien(AdressePage)
{
	document.location.href = AdressePage;
}
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->

function LancerRecherche()
{
	document.forms[0].action = "recherche_nom.php";
	document.forms[0].method = "POST";
	document.forms[0].submit();  
}

function PositionnerListe2()
{
	VolcanTrouve = 0;
	
	IndexLettreChoisie = document.RechercheNom.Lettre.selectedIndex;
	LettreChoisie = document.RechercheNom.Lettre.options[IndexLettreChoisie].value;
	
	NbVolcans = document.RechercheNom.Liste1PourLettre.length;
	
	for (LigneParcourue = 0; LigneParcourue < NbVolcans; LigneParcourue ++)
	{
		NomVolcan = document.RechercheNom.Liste1PourLettre.options[LigneParcourue].value;
		
		if (NomVolcan.charAt(0) == LettreChoisie) 
		{
			document.RechercheNom.Liste1PourLettre.options[LigneParcourue].selected = true;
			VolcanTrouve = 1;
			break;
		}
	}	
	if (VolcanTrouve == 0)
	{ 
		alert("Aucun volcan trouvé pour cette lettre ! Vous pouvez faire une nouvelle recherche...");
	}
}

function Liste()
{
	
	for (CodeASCII = 65; CodeASCII < 91; CodeASCII ++)
	{
		document.write('<option value="'+String.fromCharCode(CodeASCII)+'">&nbsp;'+ String.fromCharCode(CodeASCII)+'&nbsp;</option>');
	}

}

