求救高人:如何移动无边框的网页?分不够再加
open.html的内容
<script language=javascript>
function openwin(url)
{
var splashWin;
splashWin = window.open(url,'tip','fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0');
splashWin.resizeTo(176,144);
splashWin.moveTo(300,300);
}
</script>
<input id=name type=button value=button onclick="openwin('move.html')">
move.html的内容
<html>
<head>
<title>
</title>
<script Language='JavaScript'>
</script>
</head>
<body scroll=no leftmargin="0" topmargin="0">
<div id="Layer1" style="FONT-SIZE: 12px; HEIGHT: 154px; LEFT: 0px; POSITION: absolute; TOP: 0px; WIDTH: 176px">
<SPAN style="BACKGROUND-COLOR: deepskyblue; FONT-SIZE: 12px; HEIGHT: 10px; TOP: 0px; LEFT: 0px;POSITION: relative; WIDTH: 178px" id=title>远端图像</SPAN>
<div id="Layer2" style="BACKGROUND-COLOR:red;FONT-SIZE: 12px; HEIGHT: 144px; LEFT: 0px; POSITION: absolute; TOP: 10px; WIDTH: 176px">
</div>
</div>
</body>
</html>
现在要按着弹出窗口上面的小蓝条来移动这个无框架页面,不知道怎么实现?