// JavaScript Document
var valida_form = false; //Inicia a variável global valida_form

function Valida_Form(form) {

	Valida_Email(form, 'email', 'Email Address not valid!')
		
	if(valida_form == true) {
		Valida_Campo_Texto(form, 'firstname', 'First Name is required!')
	}

	if(valida_form == true) {
		Valida_Campo_Texto(form, 'lastname', 'Last Name is required!')
	}
	
	if(valida_form == true) {
		Valida_Campo_Texto(form, 'country', 'Country is required!')
	}
	
	if(valida_form == true) {
		Valida_Campo_Texto(form, 'comments', 'Please type your comments or questions!')
	}
	
return valida_form;
}