So I see you had to disenable client side java, which is what I expected (returning to the sever). Looks like you have 2 choices -- handle the event in code behind at the server (not a terrible choice) or add a java attribute to the submit button and alert the user if any of the textboxes are Null else redirect. A quick search here at the forum and you should be able to find an example of with the code on how to add a java attribute to a button. It really should be a fairly easy task.
I suppose another alternative you might consider is to use the summary pop-up window built into the ASP.NET validators, i.e., where all validation is reported on a single 'alert' pop up window. Perhaps in some way you can modify the bulleted list of errors here to be acceptable for your purpose. I don't have an example in front of me at the moment but a quick on line revew and you should be able to find this (also searh here at Tek-Tips as the summary validator window has been discussed a few times over the last year. Take a look at the summary alert window before you proceed to writing the java routine -- my gut instinct is that the summary window might do the trick for you.
If I were facing the problem I'd probably write a simple code behind routine to carry out what I needed -- but then if you can save a post back that would be better in the long run.
Post back and let me know what you come up with --