// Add this JavaScript code to a file

var password = prompt("Enter your password","");
if (password == "templateFAQ") {
alert("Password accepted! Loading page...");

}
else {
alert("" +password+ " is an Invalid Password! Access denied...");

//This location you would substitute the file file you want them to load
//if they have the incorrect password

window.location="error.html";

} 
