Hola!, Primero que nada las llamadas y las funciones t conviene hacerlas en <Head>, te quedará algo asi:
Código PHP:
Ver original<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/mootools/1.2.1/mootools-yui-compressed.js"></script>
<script type="text/javascript" src="js/sexyalertbox.v1.2.moo.js"></script>
<link rel
="stylesheet" type
="text/css" media
="all" href
="sexyalertbox.css"/>
<script>
function Validar() {
if (document.frmprincipal.txtcoment.value.length==0) {
Sexy.alert ("Escriba su duda y/o sugerencia.")
document.frmprincipal.txtcoment.focus()
return 0; }
Sexy.alert("Gracias por contactarnos!");
document.frmprincipal.submit();
}
</script>
</head>
Y en Body para validar usas <form>, seria algo asi:
Código HTML:
Ver original<form name='frmprincipal' method='post' action="procesa_contacto.php4">
<p style="margin: -10px 0;"><h4>Escriba su duda y/o comentario:
</h4>
<input type=button name="Submit" value="Enviar" onClick="Validar()">
Espero me hayas entendido con ese ejemplo, sino dime que intentare explicartelo de otra forma.
Salu2.