if (noteContent != null)
{
// ok, here's the tricky part. We need to take this content,
// parse it into individual notes, and figure out which to
// change/delete/create. This could prove troublesome...
NoteHome noteHome = (NoteHome)CVUtility.getHomeObject("com.centraview.note.NoteHome", "Note");
Note noteRemote = (Note)noteHome.create();
noteRemote.setDataSource(dataSource);
NoteVO noteVO = new NoteVO();
// the "title" of the note will be the first 22 characters of the content,