function alter_berechnen()
{
    var heute = new Date();
    var heute_Jahr = heute.getYear();
    var heute_Monat = heute.getMonth();
    var heute_Tag = heute.getDate();
    var Geburtsdatum_Jahr = 1974;
    var Geburtsdatum_Monat = 7;
    var Geburtsdatum_Tag = 15;
    var Alter_Jahre = 0;

    // CVB: Browserkompatibel programmieren, 1900 addieren
    if (heute_Jahr < 999)
    {
        heute_Jahr += 1900;
    }

    if ((Geburtsdatum_Tag >= heute_Tag) && (Geburtsdatum_Monat >= heute_Monat))
    {
        Alter_Jahre = heute_Jahr - Geburtsdatum_Jahr - 1;
    }
    else
    {
        Alter_Jahre = heute_Jahr - Geburtsdatum_Jahr;
    }

    // alert("Alter: " + Alter_Jahre + " | heute_Jahr: " + heute_Jahr);
    document.write(Alter_Jahre);
}

function decrypt_mail(mail_address)
{
   var ascii = 0;
   var decrypted_mail = '';

   for (var i = 0; i < mail_address.length; i++)
   {
      ascii = mail_address.charCodeAt(i);

      if (ascii >= 8364)
      {
         ascii = 128;
      }

      decrypted_mail += String.fromCharCode(ascii - 1);
   }

   location.href = decrypted_mail;
}
