Amigos, disculpen la ignorancia pero ¿A donde son remitidos los formularios como este?. Porque no hay ninguna direccion de Mail en el formulario para que sea destinatario. ¿Como se utilizan y para que sirven?
<script>
<!--
/*Form Characters check script credit-Website Abstraction (www.wsabstract.com) 200+ free JavaScripts here!
*/
function checkchars(cur){
//change max length to determine below
var maxlength=50
if (cur.chars.value.length>maxlength){
alert("Please restrain your input to 50 or less characters!")
return false
}
}
//-->
</script>
<form onsubmit="return checkchars(this)">
<strong>In 50 chars or less, please type a short description of yourself:</strong><br><textarea rows="5" cols="38" name="chars"></textarea>
<br><input type="submit" value="Submit!">
</form>