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 33 34 35 36 37 38 39 40 41 42 43
| echo ('
<STYLE type="text/css">
body {background-color:#f0f7ff;}
.optionelle {display:none}
.choix {text-decoration:none;}
.choix:hover {text-decoration:underline;}
</STYLE>
<script type="text/javascript">
function setChoix()
{
var allLink = document.getElementsByTagName("A");
for (var j=0;j<allLink.length;j++)
{
if (allLink[j].className == "choix")
{
allLink[j].onclick = selectThis;
allLink[j].actif = false;
}
}
}
function selectThis()
{
var el = document.getElementById(this.getAttribute("choix"));
el.style.display = this.actif?"none":"block";
this.actif = !this.actif;
this.blur();
return false;
}
</script>
</head>
<body onload="setChoix()">
<table width="600" border="0" cellspacing="3" bordercolor="#151D32">
<tr>
<td bgcolor="#151D32"><font color="#FF7800"><b><a href="#" choix="lutteurs" class="choix">'.$topictitle.'</a></b></font></td>
</tr>
<tr>
<td bgcolor="#151D32"><p align="justify"><font color="#ffffff"><div class="optionelle" id="lutteurs">'.$postrow.'</div></font></p></td>
</tr>
</table>
');
}
?> |