 //        WARNING: This script is not totaly secure
  //  Script:       Password Protection
  //  Version:      1.0
  //  Last Updated: June 12th 1998
  //  Author:       Scott Brady
  //  Org:          HotSource HTML Help
  //  Email:        webmaster at sbrady dot com
  //  Website:      http://www.sbrady.com/hotsource/
  //  Copyright:    Original Code Copyright (c) Scott Brady 1998
  //  Use:          This script is free to be used and modified as 
  //                long as these credits remain intact.

var password = prompt("Enter your password","")

  if (password == "njprogram") {
	alert("Password accepted!  Loading page...")

	document.write("<p>Thank You For Logging On To Our Program.\r\n\r\n")
	document.write("<p><a href=accountantprogram.html>Click Here</a> to Continue")
	
  }

  else {
	alert("" +password+ " is an Invalid Password!  Access denied...")

	document.write("<p><strong>You have entered an invalid password.  Access to the ")
	document.write("document is denied.</strong></p>")
  }
