/*************************************************************/
/* Name : Brandon Smith                                      */
/* Created For : http://www.scratchwizard.ca                 */
/* File : parsescript.js                                     */
/*************************************************************/

/*************************************************************/
/* Function Description                                      */
/* Verifies the data from the inputs to see if its valid if  */
/* not it prompts the user to reenter the feilds that are    */
/* invalid.                                                  */
/*************************************************************/
function checkForm()
{
  var value = false;//false until proven true
  /*Psuedo Code
  
  if acceptable input flag for checked input is 1 otherwise 0
  -name appropriate length only consists of characters
  -dealership/company (same rules as name)
  -address letters and numbers
  -city or town letters only
  -phone number is valid bumbers and - only
  -valid email format
  -ensure only letters numbers and necessary characters allowed ie ([a-zA-Z0-9] ['"!?.,])
  
  if all inputs total to total inputs then value true
  
  */
  return value;
}