Hola
Prueba con esto
Código javascript
:
Ver original<html>
<head>
<script type="text/javascript">
<!--
function validateForm(elem1,elem2,elem3,elem4,elem5,elem6,elem7,elem8) {
var patron=new RegExp(/^\s+|\s+$/);
var oknom = document.getElementById(elem1).value;
var okape = document.getElementById(elem2).value;
if ((oknom == "") || (okape == "")) {
alert("El campo no puede estar vacio")
return (false);
}
if ((patron.test(oknom) == true) || (patron.test(okape) == true)) {
alert("No puede dejar el campo en blanco")
return (false);
}
}
//-->
</script>
</head>
<body>
<form action="tratar-enviar-contactar.aspx" method="post">
<table width="550" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td class="texto-verde-centrado">FORMULARIO DE CONTACTO</td>
</tr>
</table>
<p> </p>
<table width="550" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="82" height="21">(*) Nombre:</td>
<td width="182" height="30"><input type="text" name="nombre" id="nombre" /></td>
<td width="101">(*) Apellidos:</td>
<td width="185"><input type="text" name="apellidos" id="apellidos" /></td>
</tr>
<tr>
<td height="21">Dirección:</td>
<td height="30"><input type="text" name="direccion" id="direccion" /></td>
<td>CP:</td>
<td><input type="text" name="cp" id="cp" /></td>
</tr>
<tr>
<td height="21">Población:</td>
<td height="30"><input type="text" name="poblacion" id="poblacion" /></td>
<td>Provincia:</td>
<td><input type="text" name="provincia" id="provincia" /></td>
</tr>
<tr>
<td height="21">País:</td>
<td height="30"><input type="text" name="pais" id="pais" /></td>
<td>(*) Teléfono:</td>
<td><input type="text" name="telefono" id="telefono" /></td>
</tr>
<tr>
<td> (*) Email:</td>
<td height="30"><input type="text" name="email" id="email" /></td>
<td> </td>
<td> </td>
</tr>
</table>
<table width="550" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><p>Comentarios:</p>
<p>
<textarea name="comentarios" id="comentarios" cols="58" rows="5"></textarea>
</p></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td align="center"><input name="button" type="submit" id="button" onclick="return validateForm('nombre','R','apellidos','R','telefono','R','email','RisEmail');" value="Enviar" /></td>
</tr>
</table>
</form>
</body>
</html>
Te he validado los dos primero y el resto... bueno con ese código se entiende
Suerte