			window.attachEvent('onload',window_onload);
			function window_onload()
			{
				thisForm.txtFirstName.focus();
			} 
			
			function txtPass_onChange()
			{
				if  (thisForm.txtPass.value.length < 6 || thisForm.txtPass.value.length > 14)
				{
					alert("Passwords must be between 6 and 14 characters.");
					thisForm.txtPass.focus();
				}
			}			
			function txtCheckPass_onChange()
			{
				if (thisForm.txtPass.value != thisForm.txtCheckPass.value)
				{
					alert("You passwords did not match.");
					thisForm.txtPass.focus();
				}
			}
			function thisForm_onSubmit()
			{
				if  (thisForm.txtFirstName.value.length < 2)
				{
					alert("Please enter you first name.");
					thisForm.txtFirstName.focus();
					return false;
				}
				if 	(thisForm.txtLastName.value.length < 2)
				{
					alert("Please enter your last name.");
					thisForm.txtLastName.focus();
					return false;
				}
				if 	(thisForm.txtEmail.value.length < 6)
				{
					alert("Please enter your email address.");
					thisForm.txtEmail.focus();
					return false;
				}
				if  (thisForm.txtPass.value.length < 6 || thisForm.txtPass.value.length > 14)
				{
					alert("Passwords must be between 6 and 14 characters.");
					thisForm.txtPass.focus();
					return false;
				}
				if (thisForm.txtPass.value != thisForm.txtCheckPass.value)
				{
					alert("You passwords did not match.");
					thisForm.txtPass.focus();
					return false;
				}
				return true;
			}
