<!-- Begin
// -- Never put on html page - always use .js file
// -- Do not change
function Entry(){
var go=0;
var user=document.entry.user.value;
user=user.toLowerCase();
var pwd=document.entry.pwd.value;
pwd=pwd.toLowerCase();
// -----------------------------------
// -- Members - add username and password
// -- Username 1122
if (user=="1122" && pwd=="1122") { window.location="images/1.htm"; go=1; }
// -- Username 0001
if (user=="0001" && pwd=="0001") { window.location="images/1.htm"; go=1; }
// -- Username 0005
if (user=="0005" && pwd=="0005") { window.location="images/1.htm"; go=1; }
// -- Username 0007
if (user=="0007" && pwd=="0007") { window.location="images/1.htm"; go=1; }
// -- Username 0008
if (user=="0008" && pwd=="0008") { window.location="images/1.htm"; go=1; }
// -- Username 0009
if (user=="0009" && pwd=="0009") { window.location="images/1.htm"; go=1; }

// -- Username 0012
if (user=="0012" && pwd=="0012") { window.location="images/1.htm"; go=1; }
// -- Username 0013
if (user=="0013" && pwd=="0013") { window.location="images/1.htm"; go=1; }
// -- Username 0014
if (user=="0014" && pwd=="0014") { window.location="images/1.htm"; go=1; }
// -- Username 0015
if (user=="0015" && pwd=="0015") { window.location="images/1.htm"; go=1; }
// -- Username 0016
if (user=="0016" && pwd=="0016") { window.location="images/1.htm"; go=1; }
// -- Username 0017
if (user=="0017" && pwd=="0017") { window.location="images/1.htm"; go=1; }
// -- Username 0018
if (user=="0018" && pwd=="0018") { window.location="images/1.htm"; go=1; }
// -- Username 0019
if (user=="0019" && pwd=="0019") { window.location="images/1.htm"; go=1; }
// -- Username 0020
if (user=="0020" && pwd=="0020") { window.location="images/1.htm"; go=1; }
// -- Username 0021
if (user=="0021" && pwd=="0021") { window.location="images/1.htm"; go=1; }
// -- Username 0022
if (user=="0022" && pwd=="0022") { window.location="images/1.htm"; go=1; }
// -- Username 0023
if (user=="0023" && pwd=="0023") { window.location="images/1.htm"; go=1; }
// -- Username 0024
if (user=="0024" && pwd=="0024") { window.location="images/1.htm"; go=1; }
// -- Username 0025
if (user=="0025" && pwd=="0025") { window.location="images/1.htm"; go=1; }
// -- Username 0026
if (user=="0026" && pwd=="0026") { window.location="images/1.htm"; go=1; }
// -- Username 0027
if (user=="0027" && pwd=="0027") { window.location="images/1.htm"; go=1; }
// -- Username 0028
if (user=="0028" && pwd=="0028") { window.location="images/1.htm"; go=1; }
// -- Username 0029
if (user=="0029" && pwd=="0029") { window.location="images/1.htm"; go=1; }
// -- Username 0030
if (user=="0030" && pwd=="0030") { window.location="images/1.htm"; go=1; }


// -- Template Code. Copy and past then remove comment characters
// -- xxxxxx - replace xxx's
// -- if (user=="xxxxxx" && pwd=="xxxxxx") { window.location="members/xxx.html"; go=1; }

// -- Access Denied
if (go==0) { window.location = "invalid.html"; }
}
// --Log In

document.write('<form name=entry>');
document.write('<b>Log-In</b><BR>');
document.write('<table bgcolor="#00cccc" border="0" cellspacing="0" cellpadding="4">');
document.write('<tr><td align="right">');
document.write('<b>username:</b> <input type="text" name="user" size="11"><br>');
document.write('<b>password:</b> <input type="password" name="pwd" size="11"> ');
document.write('</td></tr><tr><td align="center">');
document.write('<input type="button" id="btntxt" value="    Log-In    " onClick="Entry()">');
document.write('</td></tr></table>');
document.write('</form>');
// End -->