/*
MyCard Business Card
and PostCard Creator
(c) www.TUFaT.com
All Rights Reserved.
Please do not re-sell
or re-distribute.
*/
function doLogin(frm) {
  // check to make sure a valid username has been entered
  if ( frm.username.value == "" ) {
    alert('Vult u aub het gebruikersnaam veld in');
    return false;
  }
  else if ( frm.password.value == "" ) {
    alert('Vult u aub het wachtwoord veld in');
    return false;
  }
  return true;
}

function onRegistering(frm) {
  // check to make sure a valid username has been entered
  if ( frm.username.value == "" ) {
    alert('Vult u aub het gebruikersnaam veld in');
    return false;
  }
  else if ( frm.password.value == "" ) {
    alert('Vult u aub het wachtwoord veld in');
    return false;
  }
  else if ( frm.confirmation.value == "" ) {
    alert('Bevestig aub uw wachtwoord');
    return false;
  }
  else if ( frm.password.value != frm.confirmation.value ) {
    alert('Het wachtwoord en bevestiging stemmen niet overeen!');
    return false;
  }
  return true;
}
