

<!-- 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=="member" && password=="apple") { window.location="http://www.forcev.com/employees.html"; done=1; }
if (done==0) { alert("Invalid login!"); }
}
// End -->

