

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] = 'EN_EL_MATERIAL_EXTRA_DEL_DVD';
	arrForms['FORM_FIELDS_TYPE'][0][intCountForm] = 'text';
	arrForms['FORM_ERROR_MESSAGES'][0][intCountForm] = '¿Cuántas escenas trae y como se llaman?.';
		
	intCountForm++
	arrForms['FORM_FIELDS'][0][intCountForm] = 'NOMBRE_DEL_DIRECTOR';
	arrForms['FORM_FIELDS_TYPE'][0][intCountForm] = 'text';
	arrForms['FORM_ERROR_MESSAGES'][0][intCountForm] = 'Nombre del director.';
	
	intCountForm++
	arrForms['FORM_FIELDS'][0][intCountForm] = 'NOMBRE_DEL_PERSONAJE';
	arrForms['FORM_FIELDS_TYPE'][0][intCountForm] = 'text';
	arrForms['FORM_ERROR_MESSAGES'][0][intCountForm] = 'Nombre del personaje.';
	
	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] = 'APELLIDO';
	arrForms['FORM_FIELDS_TYPE'][0][intCountForm] = 'text';
	arrForms['FORM_ERROR_MESSAGES'][0][intCountForm] = 'Apellido.';

	intCountForm++
	arrForms['FORM_FIELDS'][0][intCountForm] = 'DIRECCION';
	arrForms['FORM_FIELDS_TYPE'][0][intCountForm] = 'text';
	arrForms['FORM_ERROR_MESSAGES'][0][intCountForm] = 'Direccion.';

	intCountForm++
	arrForms['FORM_FIELDS'][0][intCountForm] = 'CORREO';
	arrForms['FORM_FIELDS_TYPE'][0][intCountForm] = 'email';
	arrForms['FORM_ERROR_MESSAGES'][0][intCountForm] = 'correo.';
	
	if(checkForm(0)){
		document.frmDados.submit();
	}else{
		
	}

	
};

