/*!
* Copyright © basement.nl, 2010. All rights reserved.
* Op deze code is auteursrecht van toepassing.
*/

function Init()
{
  document.frmMain.poster_name.focus();
}

function btnSubmitClick()
{
  if (FPindakaasGesmeerd === false)
  {
    document.frmMain.pindakaas.value = DoSmeerBoterhamMetPindakaas(document.frmMain.pindakaas.value);
  }

  document.frmMain.poster_name.value = document.frmMain.poster_name.value.bas_trim();

  if (document.frmMain.step.value != "2")
  {
    document.frmMain.email.value = document.frmMain.email.value.bas_trim();
    document.frmMain.submit();
  }
  else
  {
    if (document.frmMain.password.value.length < 5)
    {
      document.getElementById("idPasswordStar").style.color = "Red";
      alert("het wachtwoord is te kort (minimaal 5 letters/cijfers).");
      document.frmMain.password.focus();
    }
    else if (document.frmMain.password.value != document.frmMain.password_check.value)
    {
      alert("het nieuwe wachtwoord moet gelijk zijn aan het controle-wachtwoord.");
    }
    else
    {
      document.frmMain.submit();
    }
  }
}

