<!-- Code after this will be ignored by older browsers

// Validate the answers to the family photos question
function CheckPassword()
{
   var password = document.MyForm.Password.value;
   
   if (password == "Nicole" || password == "nicole" || password == "Janice" || password == "janice" || 
       password == "Acton" || password == "acton" || password == "Lucinda" || password == "lucinda")
   {
      window.open('pics_family.html', 'FamilyPhotos', config='height=500,width=600,scrollbars=yes');
   }
   else
   {
      alert('That is not a correct answer.  Are you sure that you are a friend or family member?');
   }
}

// Stop hiding the code here -->
