language="JavaScript"> function passwortcheck() 
{
var passwort1='goshindo';
var passwort2='';
passwort=prompt('Bitte Passwort eingeben:','');
if (passwort==passwort1) 
{
location.href="./Archiv/members/members.htm";
} 
else if (passwort==passwort2)
{
location.href="";
}
else {
alert("Sie haben leider nicht die erforderliche Berechtigung");
location.href="neutral.htm"}
}

