I am trying to run this code below but i get a runtime error
(ie) Object Expected Error
Can somebody tell me what is the problem in the code

<%@ Language=VBScript %>
<HTML>
<HEAD>
<link rel="home" href=http://www.egain.com>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</HEAD>
<BODY>
<form name="userinfo" action="chap3RequestObj.asp" method="post">
<center>
Fill the Form
Name:<input type="text" name="name"> <br>
Email:<input type="text" name="email"> <br>

<input type=reset value=Reset>
<input type=submit value=Submit onclick="too()">
<P>&nbsp;</P>
</form>
<%
sub too()
alert(Request.Form("name"))
end sub
%>
Name:<%=Request.Form("name") %> <br>
EMail:<%=Request.Form("email") %>
</BODY>
</HTML>