function Login(){
var done=0;
var username=document.login.username.value;
username=username.toLowerCase();
var password=document.login.password.value;
password=password.toLowerCase();
if (username=="davidwest" && password=="schedule") { window.location="instructor_schedules.htm"; done=1; }
if (username=="bobwest" && password=="schedule") { window.location="instructor_schedules.htm"; done=1; }
if (username=="jimwest" && password=="schedule") { window.location="instructor_schedules.htm"; done=1; }
if (username=="billwest" && password=="schedule") { window.location="instructor_schedules.htm"; done=1; }
if (username=="member2006" && password=="2006") { window.location="members_center.htm"; done=1; }
if (username=="member" && password=="2007") { window.location="members_center.htm"; done=1; }
if (username=="bagpipe" && password=="tutor") { window.location="bagpipe_tutor/index.htm"; done=1; }
if (username=="jori" && password=="chisholm") { window.location="bagpipe_tutor/index.htm"; done=1; }
if (username=="vocal" && password=="harmony") { window.location="vocal_harmony_center/index.htm"; done=1; }
if (username=="celtic" && password=="music") { window.location="celtic_music_center/index.htm"; done=1; }
if (username=="bob" && password=="genest") { window.location="members_center.htm"; done=1; }
if (username=="praise" && password=="worship") { window.location="odcf_worship_group/index.htm"; done=1; }
if (done==0) { alert("Invalid login!"); }
}


