
<!-- 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=="synerzy1" && password=="synerzy1") { window.location="services_csd_project1.htm"; done=1; }
if (username=="synerzy2" && password=="synerzy2") { window.location="page2.html"; done=1; }
if (username=="synerzy3" && password=="synerzy3") { window.location="page3.html"; done=1; }
if (done==0) { alert("Invalid login!"); }
}
// End -->

<!-- STEP TWO: Paste this code into the BODY of your HTML document  -->
 
