You are:

Male Female

The source code of the next page:

VBScript


1
2
3
4
5
6
7
8
9  
<%
    If Request.Form("Sex")="male" Then
        Response.Redirect "http://www.tapuz.co.il/tapuzforum/main/forumpage.asp?id=130"
    ElseIf Request.Form("Sex")="female" Then
        Response.Redirect "http://www.nana.co.il"
    Else
        Response.Write "<H3>The sex was not selected</H3>"
    End If
%>

JScript


1
2
3
4
5
6
7
8  
<%@ Language=JScript%>
<%
    if(Request.Form("Sex")()=="male")
        Response.Redirect ("http://www.tapuz.co.il/tapuzforum/main/forumpage.asp?id=130")
    else if (Request.Form("Sex")()=="female")
        Response.Redirect ("http://www.nana.co.il")
    else Response.Write ("<H3>The sex was not selected</H3>")
%>