Benim Kullandığım Bi Script Belki Yardımı Dokunur
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
<title>show_hide</title>
<script>
function ShowOrHide(d1) {
if (d1 != '') DoDiv(d1);
}
function DoDiv(id) {
var item = null;
if (document.getElementById) {
item = document.getElementById(id);
} else if (document.all){
item = document.all[id];
} else if (document.layers){
item = document.layers[id];
}
if (!item) {
}
else if (item.style) {
if (item.style.display == "none"){ item.style.display = ""; }
else {item.style.display = "none"; }
}else{ item.visibility = "show"; }
}
</script>
</head>
<body>
[<A href="javascript:ShowOrHide('options')">Aç Kapat</A>]
<br>
<DIV id=options style="DISPLAY: none">
Açıldı ...
</DIV>
</body>
</html>