<!--//  Original:  Wayne Nolting (w.nolting@home.com) //  This script and many more are available free online at  //  The JavaScript Source!! http://javascript.internet.com //  Modified:  Stephen P. Fracek, Jr. (sfracek@dataarc.ws) function verify() {var themessage = "You are required to complete the following fields:";if (document.form.a01.value=="") {	themessage = themessage + "\r   - Log In Name";	document.form.a01.focus();	var fset="yes";}if (document.form.a02.value=="") {	themessage = themessage + "\r   - Password";	if (fset != "yes") {		document.form.a02.focus();	}}//alert if fields are empty and cancel form submitif (themessage == "You are required to complete the following fields:") {document.form.submit();}else {alert(themessage);return false;   }   }-->
