client-side web: assignment 6 jbwyatt.com

1. Folder in class account called "Valid"
2. Use valid xhtml, valid CSS and javascript written to class standards.
3. Come to class as there may be corrections, changes and additions as this EVOLVES. 20% late penalty per day.


Create a form with 6 inputs as follows:

First Name: Abc [Letters only]

Last Name: Xyz  [Letters only]

Telephone: (123)456-7890  [check for digits and '-' and '()' at proper places]

SS#: 123-45-6789 [check for digits and '-' at proper places]

BirthDate: mm/dd/yyyy [check for month number (01-12) / 
                      day number 1-31 / 
                      year number [current year-105 to current year]

Investment Amount: 12345  [number 1 - 1,000,000]

Validate each field as best you can.

Create a function for each validation. Report the value if ok, otherwise 
report an error.

BONUS: Using birthdate, calculate the age down to the minute. 
       Assume person born at midnight.