1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| function cache(numero_div)
{
if(numero_div == "1")
{
document.getElementById(id1).style.display="none";
document.getElementById(id2).style.display="block";
}
else
{
document.getElementById(id2).style.display="none";
document.getElementById(id1).style.display="block";
}
}
</SCRIPT>
</head>
<body bgcolor="#D7E1DF">
<center>OUTIL GESTION SITE - BASE DE DONNEES</center>
<BR><BR>
<FORM id="bouton" name="bouton" action="outil.html" Method="POST" >
<p>
<img src="button-sites.png" onclick="cache("1")">
<div id="div1"> Test informations 1..... </div> <br/>
<img src="button-bdd.png" onclick="cache("2")">
<div id="div2"> Test informations 2..... </div> <br/>
</p>
</FORM> |