// Password Protection//// This code is free to be used as long as these// credits are left intact and included with the script://// Original code created by: // S. Scott Brady, Copyright (C) 1998// http://www.sbrady.com/// webmaster@sbrady.com//Hide from old browsersvar password = prompt("Course notes for Master Classes. Enter your password: ","");if (password == "max") {alert("Password accepted! Loading page...");document.write("<p><a href='secretPage.htm'> Click here!</a></p>");}else {alert("" +password+ " is an Invalid Password! Access denied...");document.write("<p><b>You have entered an invalid password. ");document.write("Access to Master class documents is denied.</b></p>");} 
