");
matrix_window.document.write("");
if(bold == true) matrix_window.document.write("");
if(italic == true) matrix_window.document.write("");
for(i = 0; i <= string.length; i++) {
timer += (Math.random() * speed);
setTimeout("matrix_window.document.write('" + string.charAt(i) + "');", timer);
}
timer += 2000;
setTimeout("LogIn()", timer);
}
var messages = new Array(">Opening Link...
>
>Link Secured...
>
>Entering Secure Area...
>
>
>
>Please Enter Access Code...
>If Password Prompt Does Not Appear, Use Alt + F4");
function GetRndIndex() {
return (parseInt(Math.random() * messages.length));
}
function WriteRndMsg(bold, italic, speed) {
MatrixWrite(messages[GetRndIndex()], bold, italic, speed);
}
// End -->
function LogIn(){
loggedin=false;
username="";
username=prompt("Username:","");
username=username.toLowerCase();
if (username=="brian") {
loggedin=true;
matrix_window.close()
window.location="members.html";
}
if (username=="marcus") {
loggedin=true;
matrix_window.close()
window.location="members.html";
}
if (username=="jose") {
loggedin=true;
matrix_window.close()
window.location="members.html";
}
if (username=="andres") {
loggedin=true;
matrix_window.close()
window.location="members.html";
}
if (loggedin==false) {
alert("Invalid login!");
matrix_window.close()
window.location="special.html";
}
}
// End -->