ok this is the .js file for some reason, it's not working...
is this all i have to do with it? besides change the usernames and passwords and window.location?
<SCRIPT LANGUAGE="JavaScript">
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=="member1"&&password=="password1"
{window.location="page1.html"; done=1;}
if (username=="member2"&&password=="password2"
{window.location="page2.html"; done=1;}
if (username=="member3"&&password=="password3"
{window.location="page3.html"; done=1;}
if (done==0) {alert("Try again!!"

;}}
</SCRIPT>
-Sunny *:->*