function focus_mail()
{
  document.getElementById('name').focus();
}

function zeile_color(id, Farbe)
{
     document.getElementById(id).style.backgroundColor=Farbe;
}

function user_pw()
{
          var username="brazz";
          for(var i=0;i<4;i++)
          {
             username+=Math.round(Math.random()*9);
          }
          
          var pw="pw";
          for(var i=0;i<4;i++)
          {
             pw+=Math.round(Math.random()*9);
          } 
                    
     document.getElementById('name').value=username;
     document.getElementById('pw').value=pw;    
}