Hej igen
Prøv det her i IE5+ ::
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
    <title>Untitled</title>
    <script type="text/javascript">
    function theWildFunc() {
        if (window.event) {
            var tg = window.event.srcElement.id;
            if (tg != "theFamousDiv")
                document.getElementById("theFamousDiv").style.visibility = "hidden";
        }
    }
    function visIgen() {
        if (document.getElementById)
            document.getElementById("theFamousDiv").style.visibility = "visible";
    }
    if (document.getElementById)
        document.onmousedown = theWildFunc;
    </script>
</head>
<body style="font: 10px verdana, sans-serif;">
<a href="javascript:visIgen()">Vis layer</a>
<div id="theFamousDiv" style="width:100px; padding: 3px; border:1px solid #000; background: #eee;">
    Klik på mig og jeg bliver - klik udenfor og jeg forsvinder!
</div>
</body>
</html>
/CS