// This is the validation for the membership registration page, 'memberships.asp'

function validateLoginForm()
{
var x=document.forms["login"]["username"].value
if (x==null || x=="")
  {
  alert("You must enter your USERNAME");
  return false;
  }

var x=document.forms["login"]["password"].value
if (x==null || x=="")
  {
  alert("You must enter your PASSWORD");
  return false;
  }
}

