<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1251" />
<style type="text/css">
.block { position:absolute; display:none; width:120px; height:100px; overflow:auto; background-color:#fff; border:1px solid #000; }
.block a { display:block; padding:3px; background-color:#fff; }
.block a:hover { background-color:silver; }
</style>
<script type="text/javascript">
function open_close() {
document.getElementById("block").style.display = "block";
document.onmousemove = function (a) {
a = a || window.event;
a = (a.target || a.srcElement).tagName.toLowerCase();
if (a == "body" || a == "html") {
document.getElementById("block").style.display = "none";
document.onmousemove = null
}
}
};
</script>
<title></title>
</head>
<body>
<div id="block" class="block" >
<a href="">Ссылка 1</a><a href="">Ссылка 1</a>
<a href="">Ссылка 1</a><a href="">Ссылка 1</a>
<a href="">Ссылка 1</a><a href="">Ссылка 1</a>
<a href="">Ссылка 1</a><a href="">Ссылка 1</a>
<a href="">Ссылка 1</a><a href="">Ссылка 1</a>
<a href="">Ссылка 1</a><a href="">Ссылка 1</a>
<a href="">Ссылка 1</a><a href="">Ссылка 1</a>
</div>
<a href="javascript:open_close()" >открыть блок</a>
</body>
</html>