dbconnect();
projects = database.cursor("SELECT projectname FROM Project ORDER BY ProjectName")
/* The loop below displays a list of all the projects contained in the Project table.
The user can click on a project name which links to actrep.html.*/
while(projects.next()) {
var pname = escape(projects[0])
write("- " + projects[0] + "")
}