I've fixed the problem by changing keyup() to focus():
PHP Code:
//On focus
name.focus(validateName);
name.focus(validateName);
pass1.focus(validatePass1);
pass2.focus(validatePass2);
message.focus(validateMessage);
I've learned a lot from you. My Form Validation is working wonderfully. Thanks again for your time.