cursor = database.cursor("select * from cl_enroll where e_id = " +
request.id);
cursor.next();
// Check to see if already been denied (no sense doing it again)
if (cursor.e_appr_deny == "D")
{
c_id = cursor.c_id;
cursor.close();
redirect("ma-roster.htm?id=" + c_id);
}
cursor.close();