|    
			
				02/02/2008, 23:46
			
			
			  | 
  |   |  |  |  Fecha de Ingreso: septiembre-2007 
						Mensajes: 318
					 Antigüedad: 18 años, 1 mes Puntos: 1 |  | 
  |   Re: validar campos 
  hola amigos gracias ya lo resolvi de esta forma:<script type="text/javascript">
 function validar(e) { // 1
 tecla = (document.all) ? e.keyCode : e.which; // 2
 if (tecla==8) return true; // 3
 patron =/[A-Za-z\s]/; // 4
 te = String.fromCharCode(tecla); // 5
 return patron.test(te); // 6
 }
 </script>
     |