var formContacta = { crear : function (t){ errores = ""; esta_vacio(t.asunto,'ASUNTO'); esta_vacio(t.texto,'TEXTO'); esta_vacio(t.direccionRespuesta,'DIRECCION DE RESPUESTA'); cuenta_caracteres(t.texto,'TEXTO',500); email(t.direccionRespuesta, "DIRECCION DE RESPUESTA"); if(chequea()){ document.getElementById('formContacta').action = "contacta.htm"; document.getElementById('formContacta').submit(); } else{ alert("Por favor, corrija los siguientes fallos:" + errores); } } };