Hi Folks:I'm kind of new to Javascript. So far I've stuck with cut'n'paste until I have more knowledge. Besides, I'm using a Webtv. I manage a High School Alumni web site. Users submit their mailing addresses in a form. That works okay. Formerly, I had an OnTimer function to send them to a "Thank You" page after the form was sent. It worked only some of the time, so I got rid of the OnTimer. I now have a validation script to verify they entered a Class Year, Name, Address, City, etcetera. The validation works using an OnClick function call. What I really want it to do is Validate the fields, then either: (1) Pop-up message to advise there are errors, or (2) if the validated fields are okay, Send the form AND THEN automatically go to a "Thank You" page. Here's what I've tried...1) OnClick function-name to validate on the Submit button and a URL redirect as a <FORM> option.2) OnClick function-name to redirect on the Submit button and a validation script in the <FORM> option.3) Added a "return" option to each script call in "1" and "2" above.4) Did "1", "2", and "3" again using OnSubmit instead of OnClick.I can get the form to validate and send if validation passes, but it doesn't go to a "Thank You" page. I can get it to go to the "Thank You " page, but it won't validate and send. Please, I want it to validate, and if it passes, send the form and then go to the "Thank You" page.