几个小程序运行时显示错误,不明原因
<html><head><title>判断一个数的正负</title>
<script language="vbscript">
sub ispt()
dim num
num=document.form1.timetext.value
if num>0 then msgbox"正数"
else if num<0 then msgbox"负数"
else if num=0 then msgbox"你输入的是0!"
end if
end sub
</script>
</head>
<body>
<form name="form1" >请输入一个数字:
<input type="text" name="timetext" value=""> <input type="button" value="确定" onClick="call ispt()">
</form>
</body>
</html>
运行时状态栏显示有错误,到底哪错了呀?