<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
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=="SFAClient1" && password=="here123help456a") { window.location="page1.html"; done=1; }
if (username=="SFAClient2" && password=="here123help456b") { window.location="page2.html"; done=1; }
if (username=="SFAClient3" && password=="here123help456c") { window.location="page3.html"; done=1; }
if (done==0) { alert("Invalid login!"); }
}
// End -->
