<html>
<script>
function showdiv()
{
var s=document.getElementById("sdiv");
s.style.display="inline";
}
function hiddiv()
{
var s=document.getElementById("sdiv");
s.style.display="none";
}
</script>
<body οnlοad=hiddiv()>
<div id="sdiv" style="position:absolute;top:100;left:100;z-index:9999" >this is div</div>
<a href="" οnmοuseοver="showdiv()" οnmοuseοut="hiddiv()" >this is a div</a><br>
<a href="" οnmοuseοver="window.open('http://www.microsoft.com/china/ ')" >http://www.microsoft.com/china/ </a>
</body>
</html>
<script>
function showdiv()
{
var s=document.getElementById("sdiv");
s.style.display="inline";
}
function hiddiv()
{
var s=document.getElementById("sdiv");
s.style.display="none";
}
</script>
<body οnlοad=hiddiv()>
<div id="sdiv" style="position:absolute;top:100;left:100;z-index:9999" >this is div</div>
<a href="" οnmοuseοver="showdiv()" οnmοuseοut="hiddiv()" >this is a div</a><br>
<a href="" οnmοuseοver="window.open('http://www.microsoft.com/china/ ')" >http://www.microsoft.com/china/ </a>
</body>
</html>