function getFiles()
{
  pass = prompt('Passwort benötigt:','');

  switch(pass)
  {
    case 'casio':
      window.document.location.href = '/de/dateien/'+pass+'.php';
      break;
    case 'shure':
      window.document.location.href = '/de/dateien/'+pass+'.php';
      break;
    default:
      alert('Passwort falsch');
      break;
  }
}
