function formValidatorContact(theForm){
	// Make quick references to our fields
	var company = theForm.company;
	var fullName = theForm.fullName;
	var emailID = theForm.emailID;
	var phone = theForm.phone;
	var address = theForm.address;
	var country = theForm.country;
	var message = theForm.message;
	var agree = theForm.agree;

	// Check each input in the order that it appears in the form!
	if(isEmpty(company, "Please enter your Company")){
	if(isEmpty(fullName, "Please enter your Full Name")){
	if(emailValidator(emailID, "Please enter your valid Email address")){
	if(isEmpty(phone, "Please enter your Phone")){
	if(isEmpty(address, "Please enter your Address")){
	if(isEmpty(country, "Please enter your Country")){
	if(isEmpty(message, "Please enter your Inquiry/RFQ")){
	if(checkCheckBox(agree, "You must agree to our terms mentioned for submitting this form")){
		return true;
	}}}}}}}}
	return false;
}

