MENU AVEC SOUS-MENUS
<script LANGUAGE="Javascript"> function showhide(vari) { if (vari.style.display=="none") { vari.style.display=""; } else { vari.style.display="none"; } } </script>
<table BORDER="1" style="cursor:hand" width="100"> <tr> <td onClick="showhide(first)"><p align="center">Menu</td> </tr> </table> <div id="first" style="display:none;position:relative;left=50"> <table BORDER="1" width="100"> <tr> <td><p align="center">Menu1</td> </tr> <tr> <td><p align="center">Menu2</td> </tr> <tr> <td><p align="center">Menu3</td> </tr> </table> </div> <table BORDER="1" style="cursor:hand" width="100"> <tr> <td onClick="showhide(second)"><p align="center">Menu 2</td> </tr> </table> <div id="second" style="display:none;position:relative;left=50"> <table BORDER="1" width="100"> <tr> <td><p align="center">Menu 21</td> </tr> <tr> <td><p align="center">Menu 22</td> </tr> <tr> <td><p align="center">Menu 23</td> </tr> </table>