// Copyright Basement.nl, 2010

function Init()
{
  document.frmMain.poster_name.focus();
}

function btnSubmitClick()
{
  document.frmMain.poster_name.value = document.frmMain.poster_name.value.bas_trim();

  if (document.frmMain.poster_name.value.length < 2)
  {
    document.getElementById("idPosterNameStar").style.color = "Red";
    alert("de naam klopt niet.");
    document.frmMain.poster_name.focus();
  }
  else if (document.frmMain.password.value.length < 5)
  {
    document.getElementById("idPasswordStar").style.color = "Red";
    alert("het wachtwoord klopt niet.");
    document.frmMain.password.focus();
  }
  else
  {
    document.frmMain.submit();
  }
}
