使彈出的窗口永远在所有窗口的最前面,
当你关闭弹出的窗口才可以对其它窗口进行操作..
------------------------------------------
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<SCRIPT LANGUAGE="javascript">
function OpenWin()
{
  window.open ("dd.html", "newwindow", "height=400, width=600, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no, alwaysRaised=yes, z-look=yes, alwaysLowered=no")
}
</SCRIPT>
</head><body>
<a href="#" onclick="OpenWin();">弹出窗口</a>
</body>
</html>
------------------------------------------
请各位指点指点~!