Código HTML:
<form action="mailto:[email protected]" method="post" enctype="text/plain" id="form"> <table border="0" cellpadding="0" cellspacing="0"> <tr> <td>Nombre</td> <td><input type="text" name="nombre" id="nombre" onkeyup="deshabilita(this.form)" /></td> <td>Apellidos</td> <td><input type="text" name="apellidos" id="apellidos" onkeyup="deshabilita(this.form)" /></td> </tr> <tr> <td>Teléfono</td> <td><input type="text" name="telef" id="telef" onkeyup="deshabilita(this.form)" /></td> <td>Día</td> <td><input type="text" id="dia" /></td> </tr> <tr> <td><label>Hora </label></td> <td><input type="text" id="hora" /></td> <td><label>email</label></td> <td><input name="email" type="text" id="email" /></td> </tr> <tr> <td colspan="4"><label></label> Se ruega confirmación de la reserva <label> <input name="confirmacion" type="checkbox" id="confirmacion" value="checkbox" checked="checked" /> </label></td> </tr> <tr> <td colspan="4">Comentarios</td> </tr> <tr> <td colspan="4"><textarea name="coment" cols="50" rows="8" id="coment" onkeyup="deshabilita(this.form)"></textarea></td> </tr> <tr> <td><input type="submit" disabled="disabled" id="enviar" onclick="valida_envia()" value="Enviar" /></td> <td colspan="3"><input name="reset" type="reset" id="reset" value="Restablecer" /></td> </tr> </table> </form>