脚本说明:
把如下代码加入<body>区域中
<input type=button value=新开窗口延迟打开 onclick=javascript:setTimeout("window.open('http://www.jzzy.com')",10000)>
function delay(gap){ /* gap is in millisecs */
var then,now; then=new Date().getTime();
now=then;
while((now-then)<gap)
{now=new Date().getTime();}
}//