// JavaScript Document
//<!-- This script and many more are available free online at -->
//<!-- The JavaScript Source!! http://javascript.internet.com -->
//<!-- Begin - all username/passwords mut be in lower case in this document.
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=="memberservices" && password=="robertpeel") { window.location="hidden/entry.html"; done=1; }
if (username=="member services" && password=="robert peel") { window.location="hidden/entry.html"; done=1; }
if (username=="member services" && password=="national crime squad") { window.location="hidden/entry.html"; done=1; }
if (username=="localgovernment" && password=="staffbenefits") { window.location="hidden/entryla.html"; done=1; }
if (username=="news international" && password=="media") { window.location="hidden/entryla.html"; done=1; }
if (username=="fireservice" && password=="firefighter") { window.location="hidden/entry.html"; done=1; }
if (username=="medics" && password=="lifesaver") { window.location="hidden/entryla.html"; done=1; }
if (username=="phil" && password=="phil") { window.location="hidden/entry.html"; done=1; }
if (username=="visitor" && password=="visitor") { window.location="hidden/entryla.html"; done=1; }
if (username=="credit union" && password=="member services") { window.location="hidden/entry.html"; done=1; }
if (username=="narpo" && password=="robert peel") { window.location="hidden/entry.html"; done=1; }
if (username=="ipa" && password=="arthur troop") { window.location="hidden/entry.html"; done=1; }
if (username=="cummins" && password=="staff benefits") { window.location="hidden/entryla.html"; done=1; }
if (username=="visitor" && password=="san miguel") { window.location="San%20Miguel/San%20Miguel%20page.htm"; done=1; }
if (username=="armed services" && password=="staff benefits") { window.location="hidden/entryla.html"; done=1; }
if (username=="rnli" && password=="supporter") { window.location="hidden/entryla.html"; done=1; }
if (done==0) { alert("Invalid login!"); }
}
// End -->