// Delete the time specified
database.execute("delete from cl_times where c_id = " +
request.id + " and " +
"t_dt = '" + request.dt + "' and " +
"t_start = '" + request.start + "' and " +
"t_stop = '" + request.stop + "'");
// Update page
redirect("maec-times.htm?id=" + request.id);