// gateKeeper function// prompts the user for input, then redirects them to the appropriate slate in the approval folderfunction gateKeeper() {var password = prompt("Please enter your spot number or ID:", "");if (password) {this.location.href = "../approval/" + password + "/" + "slate.html";// target="_top" ;}}