Well, this script works, but not for IE or Netscape, only Firefox.
What's wrong??
What's wrong??
Code:
<script type="text/javascript">
<!--
function shoutbox() {
if (document.getElementById("theboxofshouts").style.visibility == "collapse") {
document.getElementById("theboxofshouts").style.visibility = "visible";
document.getElementById("shoutboxlink").innerHTML = "Close Shoutbox";
} else {
document.getElementById("theboxofshouts").style.visibility = "collapse";
document.getElementById("shoutboxlink").innerHTML = "Open Shoutbox";
}
}
-->
</script>







