Old stuff/ecole_etude_fac_de_pau/licence_2/projet_html/include/navigation.html
(Deskargatu)
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
<title>navigation</title>
<link rel="stylesheet" type="text/css" href="../style.css">
<script type="text/javascript">
var noms = new Array;
var urls = new Array;
noms =['Choisir la page','Accueil','Licence','-- première année',' -- deuxième année','-- troisième année','Master','-- Génie Logiciel','-- Systè distribués','-- Imagerie','Plan du site','Contacts'];
urls=[' ','accueil.html','licence.html','licence1.html','licence2.html','licence3.html','master.html','gl.html','sd.html','imagerie.html','plandusite.html','contacts.html'];
function navigation()
{
var lien = document.forms[0].nom.value;
window.opener.location=lien;
if (document.forms[0].garde.value == "non") { window.close(); }
}
</script>
</head>
<body>
<div align="center">
<h3>Outil de Navigation</h3>
<form>
<select name="nom" onchange="navigation()">
<script type="text/javascript">
for (i=0;i<urls.length;i++)
{
document.writeln('<option value="'+urls[i]+'">'+noms[i]+'</option>');
}
</script>
</select>
<fieldset> <legend>Garder
cette page ouverte</legend>
<select name="garde">
<option value="oui">Oui</option>
<option selected="SELECTED" value="non">Non</option>
</select>
</fieldset>
<input value="Remise à Zero" type="reset"> </form>
</div>
</body>
</html>