function Login(){
var done=0;
var user=document.login.user.value;
user=user.toLowerCase();
var pw=document.login.pw.value;
pw=pw.toLowerCase();
if (user=="mautnermarkhof" && pw=="0180") { window.location="memorandum-info.htm"; done=1; }
if (user=="thonhauser" && pw=="0180") { window.location="memorandum-info.htm"; done=1; }
if (user=="sigmund" && pw=="0180") { window.location="memorandum-info.htm"; done=1; }


if (done==0) { alert("Sorry - that didn't work. Please try again or contact us if you forgot your password!"); }
}


