


	// Form validation requirements
	//
	document.form1.fname.optional = false;
	document.form1.fname.label = "Your First Name";
	//
	document.form1.lname.optional = false;
	document.form1.lname.label = "Your Last Name";	
	//
	document.form1.add1.optional = true;
	document.form1.add1.label = "Address Line 1";	
	//
	document.form1.add2.optional = true;
	document.form1.add2.label = "Address Line 2";	
	//		
	document.form1.email.optional = false;
	document.form1.email.label = "Your Email Address";
	document.form1.email.mask = maskeMail;
	//
	document.form1.phone.optional = true;
	document.form1.phone.label = "Your Full Phone Number";
	document.form1.phone.mask = maskFullPhone;
	//
	document.form1.time.optional = true;
	document.form1.time.label = "The Best Time to Contact You";
	//
	document.form1.way.optional = true;
	document.form1.way.label = "The Best Way to Contact You";
	//
	document.form1.procedure.optional = true;
	document.form1.procedure.label = "The Procedure Type you are interested in, or have a question about";
	//
	document.form1.schedule.optional = true;
	document.form1.schedule.label = "The Best Time of Day to Schedule your FREE consultation";				
	//
	document.form1.question.optional = true;
	document.form1.question.label = "The question you would like to ask Dr. Tran";
	