HTMLFormatter formatter = new HTMLFormatter();
formatter.appendLine("<BR><fieldset>\n<legend>Insert data into the cluster</legend>\n");
formatter.appendLine("<FORM action=\"" + StorageService.getHostUrl() + "/home?" + INSERT + "=T\" method=\"post\">");
// get the list of column families
Table table = Table.open("Mailbox");
Set<String> columnFamilyComboBoxSet = table.getColumnFamilies();
formatter.append("insert into ");
formatter.addCombobox(columnFamilyComboBoxSet, "columnfamily", 0);
formatter.append(" : <INPUT name=columnName>");
formatter.append(" data = <INPUT name=data>");