Ayuda por fisss,

<script language="JavaScript">
function valida_envia(){
if (document.formulario.EMail.value.length==0){
alert("Tiene que escribir un Email")
document.formulario.EMail.focus();
return false;}
if (document.formulario.Contacto.value.length==0){
alert("Tiene que escribir un nombre de contacto")
document.formulario.Contacto.focus();
return false;}
if (document.formulario.Acepto.checked == false){
alert("Debe leer y aceptar las condiciones de uso y privacidad del sitio web");
return false;
}
return true;
document.formulario.submit();
}
</script>
<form action="sendmail1.asp" method="post" name="formulario" id="formulario" onSubmit="valida_envia('EMail','','Contacto','')">
<table border="0" cellspacing="2" width="360" align="center" cellpadding="1">
<tr align="center">
<td colspan="2" height="25"><img src="../006/cabeceracontactar.gif" height="50" border="0" width="333"></td>
</tr>
<tr>
<td colspan="2" class="texto"> </td>
</tr>
<tr>
<td colspan="2" class="texto">Si desea recibir más información sobre alguno
de nuestros productos, rellene este formulario y en breve nos pondremos
en contacto con usted.<br>
</td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td colspan="2" class="texto">(*) Información requerida</td>
</tr>
<tr>
<td width="113" align="right" class="textog">E-mail(*): </td>
<td width="258" valign="top">
<input type="text" name="EMail" size="40" tabindex="9" maxlength="30">
</td>
</tr>
<tr>
<td width="113" align="right" class="textog">Persona de Contacto(*): </td>
<td width="258" valign="top">
<input type="text" name="Contacto" size="40" tabindex="11" maxlength="50">
</td>
</tr>
<tr>
<td width="113" align="right" class="textog">Teléfono de Contacto: </td>
<td width="258" valign="top">
<input type="text" name="Telefono" size="40" tabindex="10" maxlength="30">
</td>
</tr>
<tr>
<td width="113" class="textog" align="right">Comentarios: </td>
<td width="258" valign="top">
<textarea rows="3" name="Comentarios" cols="35" tabindex="18"></textarea>
</td>
</tr>
<tr>
<td colspan="2" align="center"><input name="Acepto" type="checkbox" id="Acepto" value="checkbox" checked>
<a href="../legal.html">He leído y aceptado las condiciones de uso y privacidad del sitio web</a> </td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Enviar" class="boton">
<input type="reset" value="Borrar" class="boton">
</td>
</tr>
</table>
</form>