Hola de nuevo.
Código HTML:
<html>
<head>
<script>
function tecla(e) {
no=' áéíóú'; //añade los caracteres que necesites
t=(document.all) ? e.keyCode : e.which;
t=String.fromCharCode(t)
if(no.indexOf(t)>=0) return false;
}
</script>
</head>
<body>
<input type="text" onkeypress="return tecla(event)" />
</body>
</html>
Saludos,