Use a regular expression like this:
Code:
function validate(oTextbox)
{
if ( /[^a-zA-Z]/.test(oTextbox.value) )
{
alert("failed validation");
}
}
BTW that's client-side
js. I can give you the corresponding code for server-side VBS if you want it.
hth
Phil