// Check to make sure they've logged in as the administrator
securityCheck(client.valid, client.usertype, "admin", "../login.htm");
// Dynamically generate the body string according to the attributes in the
// configuration file specified as the argument of dynBody()
bodystr = dynBody("settings.cfg");
if(!dbCheck()) {
redirect("../error.htm?error=dbfail");
}
cursor = database.cursor("select * from seeker order by last_name");
cursor.next(); // Initialize the cursor.