// JavaScript Document

function validate(form){
	//Validate the FistName
	if(form.txtFirstName.value.length == 0){
	    window.alert("The First Name is required, please insert it.");
		form.txtFirstName.focus();
		return (false);
	}
	//Validate the LastName
	if(form.txtLastName.value.length == 0){
	    window.alert("The Last Name is required, please insert it.");
		form.txtLastName.focus();
		return (false);
	}
	//Validate the Email
	if(form.txtEmail.value.length == 0){
	    window.alert("The Email is required, please insert it.");
		form.txtEmail.focus();
		return (false);
	}
	//Validate the Country
	if(form.txtCountry.value.length == 0){
	    window.alert("The Country is required, please insert it.");
		form.txtCountry.focus();
		return (false);
	}	

}