
/*
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('Please fill in username field');
    return false;
  }
  else if ( frm.password.value == "" ) {
    alert('Please fill in password field');
    return false;
  }
  return true;
}

function onRegistering(frm) {
  // check to make sure a valid username has been entered
  if ( frm.username.value == "" ) {
    alert('Please fill in username field');
    return false;
  }
  else if ( frm.password.value == "" ) {
    alert('Please fill in password field');
    return false;
  }
  else if ( frm.confirmation.value == "" ) {
    alert('Please confirm your password');
    return false;
  }
  else if ( frm.password.value != frm.confirmation.value ) {
    alert('The password and confirmation do not match!');
    return false;
  }
  return true;
}