public String getFunctionName() {
return "MyColorFunction";
}
public void translate(HTMLSessionVariable sessionVariable, HTMLParser parser, String[] arguments) throws Exception {
DataModel model = parser.getModel();
String backgroundColorId = model.getBackgroundColorId();
if (backgroundColorId != null) {
parser.getOut().write("BGCOLOR=$!color(\"".getBytes());
parser.getOut().write(backgroundColorId.getBytes());
parser.getOut().write("\")".getBytes());