function check_the_form() { 
  var the_error='';
  var the_person=document.the_form.person.value;
  var the_password=document.the_form.password.value;
  var validperson=" abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
  var validpassword=" 0123456789.";
if (the_person.length < 4){
the_error = the_error + "-Devi inserire un nome di almeno 4 caratteri\n";
}

    
for (var i=0; i<the_person.length; i++) {
   if (validperson.indexOf(the_person.charAt(i)) < 0) {
         the_error = the_error + "-Non usare caratteri speciali o numeri nel nick\n";
        }
    }
    
for (var i=0; i<the_password.length; i++) {
   if (validpassword.indexOf(the_password.charAt(i)) < 0) {
         the_error = the_error + "-Spiacente, ho bisogno del tuo IP per farti accedere alla chat\n";
        }
    }
  
if (the_error!=''){alert('Per favore:\t\t\t\t\t\n\n'+the_error)}
  document.return_the_value = (the_error=='');
}
