// Copyright Basement.nl, 2009

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 < 4)
  {
    document.getElementById("idPosterNameStar").style.color = "Red";
    alert("the name is not correct.");
    document.frmMain.poster_name.focus();
  }
  else if (document.frmMain.password.value.length < 5)
  {
    document.getElementById("idPasswordStar").style.color = "Red";
    alert("the password is not correct.");
    document.frmMain.password.focus();
  }
  else
    document.frmMain.submit();
}
