db97hoops...hey, I always found it easlier to put all the other functions into one final function and call that funtion...
EX:
function 1() {
...
}
function 2() {
...
}
function 3() {
...
}
function all() {
function1;
function2;
function3;
}
And then in the onSubmit just call function all()... I have not failed; I merely found 100,000 different ways of not succeding...