function passUrl() {
    var pass1="healthysnacks";

    var password=prompt('Please enter your password to view this page!',' ');

    if (password==pass1) {
        alert('Password Correct! Click OK to enter!');
    } else {
        window.history.go(-1);
    }
}
