<!--- Sample Page

You will need to set up one or two more pages-
1. Thank you for form submission (attach to this page)
        2. Email attachment (optional) ATTACH TO THANK YOU PAGE
                --->

<center>

<table border=3 width=400 cellpadding=2 cellspacing=1>

<tr>
        <td><font size=2><b>Su nombre:</b></font></td>
        <td><INPUT SIZE=40 NAME="FromUser"></td>
        <td align=middle rowspan=3></td>
</tr>

<tr>
        <td><font size=2><b>Su Email:</b></font></td>
        <td><INPUT SIZE=40 NAME="EMail"></td>
</tr>

<tr>
        <td><font size=2><b>Referencia:</b></font></td>
        <td><INPUT  SIZE=40 NAME="Subject"></td>
</tr>

<tr>
        <td><font size=2><b>Tipo:</b></font></td>
        <td colspan=2>
        <SELECT NAME="CommentType" size=1>
        <option>Sugestin
        <option selected>Comentario
        <option>Requerimiento
        <option>Consulta
        </select>
        </td>
</tr>

<tr>
        <td><font size=2><b>Su mensaje:</b></font></td>
        <td colspan=2><TEXTAREA ROWS=10 COLS=50 NAME="MessageText" WRAP=ON></TEXTAREA>
        </td>
</tr>

<tr>
        <td><font size=2><b>Enve su Mensaje:</b></font></td>
        <td align=center colspan=2><INPUT TYPE="submit" VALUE="                             Enviar                              ">
        </td>
</tr>

</table>

</center>

<!--- Note: You can use hidden fields to require that certain
other fields have values before submission.  In this
example, an E-mail adress and user name is required
before the entry can be submitted.  --->

<input type="hidden" name="EMail_required"
    value="Debe ingresar direccin de E-Mail.">

<input type="hidden" name="FromUser_required"
    value="Debe ingresar su nombre.">

<!--------- COMMENTED OUT FOR REFERENCE

Optional Message text required and other examples
of requiring form input are commented out below here

<input type="hidden" name="MessageText_required"
value="Debe entrar un mensaje.">

<input type="hidden" name="SomeNumberField_Interger"
value="Su ingreso debe ser numerico.">

There are also Date, Time, Range (min,max) Form
validation commands available in the Cold Fusion guide under
Form Field Validation   --------->

<!--- Fin campos ocultos --->


<!--- </form></body></html> tags are handled by the program
DO NOT ADD THEM to your page --->


<!--- End Sample Page STANDARD.TXT --->