﻿

function enviaContato(){
	var intCountForm=0;
	
	arrForms['FORM_OBJECT'][0] = 'document.frmDados';
	var objForm=arrForms['FORM_OBJECT'][0];
	
	arrForms['FORM_FIELDS'][0] = new Array();
	arrForms['FORM_FIELDS_TYPE'][0] = new Array();
	arrForms['FORM_ERROR_MESSAGES'][0] = new Array();
		
	intCountForm++
	arrForms['FORM_FIELDS'][0][intCountForm] = 'quest1';
	arrForms['FORM_FIELDS_TYPE'][0][intCountForm] = 'text';
	arrForms['FORM_ERROR_MESSAGES'][0][intCountForm] = 'Quest1.';
	
	intCountForm++
	arrForms['FORM_FIELDS'][0][intCountForm] = 'quest2';
	arrForms['FORM_FIELDS_TYPE'][0][intCountForm] = 'text';
	arrForms['FORM_ERROR_MESSAGES'][0][intCountForm] = 'Quest2.';

	intCountForm++
	arrForms['FORM_FIELDS'][0][intCountForm] = 'nombre';
	arrForms['FORM_FIELDS_TYPE'][0][intCountForm] = 'text';
	arrForms['FORM_ERROR_MESSAGES'][0][intCountForm] = 'nombre.';
	
	intCountForm++
	arrForms['FORM_FIELDS'][0][intCountForm] = 'telefono';
	arrForms['FORM_FIELDS_TYPE'][0][intCountForm] = 'text';
	arrForms['FORM_ERROR_MESSAGES'][0][intCountForm] = 'telefono.';
	
	intCountForm++
	arrForms['FORM_FIELDS'][0][intCountForm] = 'apellido';
	arrForms['FORM_FIELDS_TYPE'][0][intCountForm] = 'text';
	arrForms['FORM_ERROR_MESSAGES'][0][intCountForm] = 'apellido.';
	
	intCountForm++
	arrForms['FORM_FIELDS'][0][intCountForm] = 'correo';
	arrForms['FORM_FIELDS_TYPE'][0][intCountForm] = 'email';
	arrForms['FORM_ERROR_MESSAGES'][0][intCountForm] = 'correo.';
	
	intCountForm++
	arrForms['FORM_FIELDS'][0][intCountForm] = 'direccion';
	arrForms['FORM_FIELDS_TYPE'][0][intCountForm] = 'text';
	arrForms['FORM_ERROR_MESSAGES'][0][intCountForm] = 'direccion.';
	
	if(checkForm(0)){
		document.frmDados.submit();
	}else{
		
	}
};

