求救,急用,关于asp的一段源代码的问题.
各位大哥大街帮忙看下为什么下面段代码总是运行不成功啊,到底哪里出错了???
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script language="javascript">
<!--//
var num=0;
var id;
function st(){
num=num+1
if(num=3){
if(confirm("请确定进入后台管理页面"){
window.open("index.asp",","width=526,height=215,scrollbar=no");
return;
}else{
return;
}
}
id=setTimeout(st,1000);
}
function ed(){
clearTimeout(id);
num=0;
}
//-->
</script>
</head>
<body>
<form name="form1" method="post" action=">
<div>
<div align="center"><img src="images/edit.gif" width="302" height="127"
<% If Request.QueryString("action")<>"back" Then %>
onclick="st()" onmouseout="ed"
<% End if %>
></div>
</div>
</form>
</body>
</html>

