

var wrong="denied.htm";    
// password...    
var council="council";    
var member="member";
// prompts the user this...    
var name = prompt("Please Enter Your Password","");    
// if... else statement... right, confirm this, wrong, go to wrong...    
if (name == council) document.location="council_members.htm"    
else
if (name == member) document.location="member.htm"
else {location.href=wrong}   



