<!--Hide from browsers that do not support JavaScript
//this script prompts user for Board-of-Directors password to view page

//function is called from the HTML document to prompt for password
function getPassword()
{
  var password = prompt("Please enter a LEVEL-1 password to access the TOOLS MENU", "")

  if(password=="lincolnp60613")
  {
    //offer different links
    document.writeln('<h2>Some items require separate Level-2 security name and password</h2>');
    document.writeln('<hr>');
    document.writeln('<h4><a href="/">Return to home page</a></h4>');
    document.writeln('<hr>');
    document.writeln('<p><a href="boardInfo.html">Info on next Meeting and Mailing</a></p>');
    document.writeln('<p><a href="/reports/lplemail.php">Mailing List - Email</a></p>');
    document.writeln('<p><a href="/reports/mListing.html">Membership Address Listing</a></p>');
    document.writeln('<p><a href="/minutes/archive.html">Meeting Archives</a></p>');
    document.writeln('<hr>');
    document.writeln('<p>More to come - kisses! XOXOXOX </p>');
  }
  else
  {
    //Do nothing and remain on the existing page.
  }
}


//stop hiding-->