<html>
<head>
<script language="javascript">
function move_layer()
{
document.getElementById("d1").style.left=window.event.x+document.getElementById("d1").style.height;
document.getElementById("d1").style.top=window.event.y+document.getElementById("d1").style.width;
}
document.onmousemove =move_layer;
</script>
</head>
<body>
<div id="d1" style="position:absolute">
123</div>
</body>
</html>