#!/usr/bin/perl -w
#
# index.cgi
#

use strict;

require "web.pl";

###########################################################################

print "Content-type: text/html \n\n";

&top_html1;

&javascript;

&top_html2;

print <<HTMLCODE;

<p><FORM NAME="form" ACTION="rsvp.cgi" METHOD="POST" onSubmit="return verify();">
<table border=0 cellspacing=0 cellpadding=5>
<TR><TD width=280><span class="style3">*</span>First Name:</td><TD><INPUT TYPE="text" NAME="fname" SIZE="50" MAXLENGTH="50"></TD>
<TR><TD><span class="style3">*</span>Last Name:</td><TD><INPUT TYPE="text" NAME="lname" SIZE="50" MAXLENGTH="50"></TD>
<TR><TD><span class="style3">*</span>University ID Number: (Nxxxxxxxx)</td><TD><INPUT TYPE="text" NAME="sid" SIZE="20" MAXLENGTH="9"></TD>
<TR><TD><span class="style3">*</span>NYU E-mail Address: <TD><INPUT TYPE="text" NAME="email" SIZE="50" MAXLENGTH="50"></TD>
<TR><TD>Hometown (City, State/Province, Country):</td><TD><INPUT TYPE="text" NAME="hometown" SIZE="50" MAXLENGTH="50"></TD>
<TR><TD>Cell Phone Number:</td><TD><INPUT TYPE="text" NAME="cell" SIZE="20" MAXLENGTH="50"></TD>
<tr><td colspan=2>Do you have any dietary restrictions?</td>
<tr><td>&nbsp;</td><td><input type="checkbox" name="ko" value="Y"> Kosher/Halal</td>
<tr><td>&nbsp;</td><td><input type="checkbox" name="vet" value="Y"> Vegetarian</td>
<tr><td>&nbsp;</td><td><input type="checkbox" name="veg" value="Y"> Vegan</td>
<tr><td>&nbsp;</td><td><input type="checkbox" name="gf" value="Y"> Gluten free</td>
<tr><td>&nbsp;</td><td><input type="checkbox" name="ot" value="Y"> Other&nbsp; <input type="text" name="other" size="40"></td>

<tr><td colspan=2>Do you have any other health related concerns that you think we should know about?&nbsp; Is there something you want us to know about you?</td>
<tr><td colspan=2><textarea name="concerns" cols="70" rows="4" ></textarea></td>
<tr><td colspan=2><span class="style3">* required</span></td>
<tr><td colspan=2><i>Please Note: Your University ID Number is a 9-character ID number starting with capital N.&nbsp; It can be found on the back of your NYU ID card or in the "Preferences" screen on your NYU Home account.</i></td>
</table>

<br /><hr>
<br />
<b>Statistics Proficiency Exam: see below for eligibility</b>

<p>Students with a Statistics AP score of 4 or 5 that they have had sent to NYU are eligible to take the Statistics Proficiency Exam during Welcome Week.&nbsp; Students who pass the exam will be waived from 4 of the 6 credit Statistics requirement, but will still need to complete STAT-UB 3 Regression &amp; Forecasting Models (2 credits) and 4 more credits of elective in their time at NYU Stern.&nbsp; Please note that passing the exam does not guarantee you a seat in STAT-UB 3 this fall; you may need to complete the course in a future semester.</p>
<p>Please RSVP for the Statistics Proficiency exam (below) by August 20th at 5pm to help us ensure the appropriate number of exams are ordered.&nbsp; Confirmation e-mails will be sent by August 22nd.</p>
<p>A calculator is not required for the exam, but a simple 4-function calculator (i.e., add, subtract, multiply, divide) may be used (no graphing calculators or cell phone calculators allowed).&nbsp; We will have a few calculators available, but do not guarantee to have enough for everyone, so you are encouraged to bring your own.&nbsp; No formula sheets or other aids may be used in the exam.</p>
<p>A <a href="http://w4.stern.nyu.edu/uc/advisingdocs/stats_study_guide.pdf" target="_blank">study guide for the exam</a> may be downloaded.</p>
<p>If you have a qualifying disability that requires accommodations for exams, you should contact the Moses Center by <b>August 22</b> to discuss the necessary documentation and procedures (Tel and TTY: +1-212-998-4980).</p>
<table border="0" cellpadding="5" cellspacing="0">
  <tbody>
    <tr>
      <td valign="top"><input type="checkbox" name="statistics" value="Y"></td>
      <td>Yes, I have a 4 or 5 on AP Statistics that has been reported to NYU by the College Board, and I want to take the Statistics Proficiency Exam during Welcome Week.</td>
    </tr>
  </tbody>
</table>
<p><i>Remember, this exam is not required for students who plan to take STAT-UB 103 or STAT-UB 1 in the Fall semester, and is only for students with a Statistics AP score of 4 or 5 who wish to be exempt from part of the requirement.</i></p>

<b>Information regarding Calculus Placement Exams can be found on the next page.</b>

<br /><br />
<INPUT TYPE="SUBMIT" VALUE="Click to RSVP">

HTMLCODE

&end_html;

exit;
