Muchas gracias goteen_mx !! copié el codigo tal cual, cambié el name de mi formulario pero sigue pasando lo mismo. Con todos los datos en blanco se manda igual.
Creo que el error esta en el codigo HTML del formulario en la parte del onsubmit o del onclick del boton ...
Código Javascript
:
Ver original<form name="frm1" action="enviacorreo.php" method="post" onsubmit="return valida()">
<table>
<tr>
<th colspan="2"> Contacto </th>
</tr>
<tr>
<td> Nombre </td>
<td> <input size="15" maxlength="15" type="text" id="nombre" name="nombre"/> </td>
</tr>
<tr>
<td> Apellido </td>
<td> <input size="15" maxlength="15" type="text" id="apellido" name="apellido" /> </td>
</tr>
<tr>
<td> E-mail </td>
<td> <input size="15" maxlength="25" type="text" id="email" name="email" /> </td>
</tr>
<tr>
<td> Teléfono </td>
<td> <input size="15" maxlength="15" type="text" id="tel" name="tel" /> </td>
</tr>
<tr>
<td> Comentarios </td>
<td>
<textarea name="comentario" cols="45" tows="5"></textarea>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="button" value="Confirma" id="boton" name="boton" onclick=" document.frm1.submit();" />
</td>
</tr>
</table>
</form>