متن مخفی که با کلیک روی لینک ظاهر می گردد
<head>
<SCRIPT language=javascript type=text/javascript>
function archives(Down)
{
current=(document.getElementById(Down).style.display == “none”) ? “block” : “none”;
document.getElementById(Down).style.display = current;
}
</SCRIPT>
</head>

<body>
<A onClick=”archives(‘archives’); return false;” href=”#”>Click Here</a>
<DIV id=archives style=”DISPLAY: none”>*** Welcome to Our Website *** </DIV>

</body>