function checkform() {
	var the=document.myform;
	if ((the.username.value=="") && (the.password.value=="")) {
		alert('Please enter either the username or the email address used when you signed up.');
		the.username.focus();
		return false;
	}
	return true;
}
