<!--
function LogIn(theForm)
{

if (theForm.username.value == "" || theForm.username.value.length < 2 || theForm.username.value.length > 25)
  {
    alert("Please enter your username. \nRemember it is 2 to 25 characters long");
    theForm.username.focus();
    return (false);
  }

var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzƒŠŒŽšœžŸÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ0123456789-";
  var checkStr = theForm.password.value;
  var allValid = true;
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
  }
  if (!allValid || theForm.password.value.length < 6 || theForm.password.value.length > 12)

  {
    alert("Enter you password! \nRemember: Your password is 6 to 12 characters,alphanumeric and case-sensitive.\nIf this is your first login you must have received a temporary password by email \nWe recommend you to change this password after your first login");
    theForm.password.focus();
    return (false);
  }

return (true);
}

//-->