err = new Array();

err['contact'] = new Array();
err['contact'][1] = "The Name field may not contain numbers. Please correct your Name now.";
err['contact'][3] = "Your Name may not exceed fifteen characters -- please correct your Name now.";
err['contact'][4] = "Your Name is required.";
err['contact'][5] = "Your Name may not contain characters such as @, !, * or $. Please re-enter your Name using only letters and numbers now.";
err['contact'][7] = err['contact'][4];

err['bride_name'] = new Array();
err['bride_name'][1] = "The Name field may not contain numbers. Please correct your Name now.";
err['bride_name'][3] = "Your Name may not exceed fifteen characters -- please correct your Name now.";
err['bride_name'][4] = "Your Name is required.";
err['bride_name'][5] = "Your Name may not contain characters such as @, !, * or $. Please re-enter your Name using only letters and numbers now.";
err['bride_name'][7] = err['bride_name'][4];

err['groom_name'] = new Array();
err['groom_name'][1] = "The Name field may not contain numbers. Please correct your Name now.";
err['groom_name'][3] = "Your Name may not exceed fifteen characters -- please correct your Name now.";
err['groom_name'][4] = "Your Name is required.";
err['groom_name'][5] = "Your Name may not contain characters such as @, !, * or $. Please re-enter your Name using only letters and numbers now.";
err['groom_name'][7] = err['contact'][4];

err['phone'] = new Array();
err['phone'][4] = "The Phone Number you entered is invalid.  Please enter your full Phone Number -- including area code.";
err['phone'][7] = err['phone'][4];

err['email'] = new Array();
err['email'][1] = "The Email Address you entered, is not formatted correctly.\nPlease re-enter your Email Address now using this format: name@somewhere.com.";

