﻿<!--//
// 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 at sbrady dot com
//
Hide from old browsers
var password = prompt("Enter your password","");
if (password == "wiggly wombat") {
alert("Password accepted! Loading page...");

document.write("<p>This is where you put your html code.</p>");
document.write("<p>It is a little annoying having to put ");
document.write("all your code in the WRITE ");
document.write("tags, but it is free and doesn't require ");
document.write("a special server.</p>");
}

else {
alert("" +password+ " is an Invalid Password. Contact Kim if you would like access to this page");

document.write("<p><b>You have entered an invalid password. ");
document.write("Access to the document is denied.</b></p>");
} 
