hey thanks for the reply,
Tom, I already know about the semicolons, Eric helped me out on this a few weeks ago, but thanks anyway.
Eric
if(thisform.u_nameval.value.length > 0 && thisform.pwd.value.length > 0)
I noticed that i can also do it like:
if(thisform.u_name.value.length > 0 && thisform.pwd.value.length > 0)
what is the difference taking out the val after name??? thanks for helping to make it work.
I forgot about the & being bitwise and && being logical!!! silly me
Davy
[ April 15, 2004: Message edited by: Davy Kelly ]