﻿/*
* Copyright © basement.nl, 2012. All rights reserved.
* Op deze code is auteursrecht van toepassing.
*/

function Init()
{
  document.frmMain.poster_name.focus();
}

function ChangeLoginToEmail()
{
  document.getElementById("idPosterNameCaption").innerHTML = "<label for=\"idPosterName\">inlognaam of e-mailadres</label>";
  document.getElementById("idChangeLoginToEmailCaption").innerHTML = "";
  document.frmMain.poster_name.maxLength = 80;
  alert("inloggen met je e-mailadres is ingeschakeld.");
  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();
  }
}

