<html>
<script language="javascript">
var newWin
function start()
{
newWin=window.open("form.html");
setInterval("openLink();",12001);
}
function openLink()
{
newWin.location="form.html";
}
</script>
<body onLoad="start();">
</body>
</html>
form.html的内容:
<html>
<body onLoad="FORM.submit();">...