ho seguito il tutorial su html....
http://pro.html.it/articoli/id_296/idcat_11/pro.html

per realizzare un semplice menu con combo box...ma non m i funziona

quando seleziono la voce della combo non succede niente

ecco il codice:


codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Documento senza titolo</title>
<link href="/restricted_area/css/ra.css" rel="stylesheet" type="text/css">
<script type="text/javascript">
 <--
  function Menu(links) {
     location.href = links[links.selectedIndex].value;
  }
 //-->
</script> 

</head>

<body>
<table width="493"  border="0" align="center">
  <tr bgcolor="#40576f">
    <td width="487" height="158" valign="middle" bgcolor="#E6E6FF"><div align="center">
      

[img]images/upload.gif[/img]</p>
        <table width="339" border="0">
          <tr>
            <td height="29" align="center"><span class="intestazioni">add a database</span></td>
          </tr>
          <tr>
            <td height="29" align="center"><span class="intestazioni">Please select table of database </span></td>
          </tr>
          <tr>
            <td align="center"><form name="form1" method="post" action="">
             <select onChange="Menu(this)">
   <option value="javascript:void(0)">Jump to...</option>
   <option value="addnews.asp">ADD NEWS</option>
   <option value="pagina2.htm">Pagina 2</option>
   <option value="pagina3.htm">Pagina 3</option>
   <option value="pagina4.htm">Pagina 4</option>
   <option value="pagina5.htm">Pagina 5</option>
</select> 


            </form></td>
          </tr>
        </table>
        </div></td>
  </tr>
</table>
</body>
</html>
grazie