function validate_member_profile_fields()	 
{
	var u = document.member_profileForm.fUser;
	var w = document.member_profileForm.fPassword;

	if ((u.value == "") && (w.value == ""))
	{
		alert ("You must fill in both your user name and password.");
		document.member_profileForm.fUser.focus();

		return false;
	}
	else
	{	
		return true;
	}
}

