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 32
| <script langage="JavaScript">
function affImages(){
if(document.getElementById('en').style.display == "none"){
document.getElementById('en').style.display = "block";
document.getElementById('fr').style.display = "block";
}
else{
document.getElementById('en').style.display = "none";
document.getElementById('fr').style.display = "none";
}
}
</script>
<table border=0 summary="">
<tr>
<td> </td>
<td onclick="affImages()"><img src="../images/drapeaux/language.gif" width="73" height="16" border="0"></td>
<td id="en" style="display:none" width="23" height="14"><a href="asp?langue=en"><img src="../images/drapeaux/Anglais.gif" width="23" height="14" border="0"></a></td>
<td id="fr" style="display:none" width="23" height="14"><a href="asp?langue=fr"><img src="../images/drapeaux/Francais.gif" width="23" height="14" border="0"></a></td>
</tr>
</table> |