final HtmlBlockContainer container = new HtmlBlockContainer();
final HtmlImage image = new HtmlImage();
image.setSource(getContext().getViewState().getRequest().getContextPath() + getJcaptchaUrl());
image.setStyle(getImageStyle());
container.addChild(image);
final HtmlText text = new HtmlText(getResourceMessage("fenix.renderers.captcha.process"));
text.setFace(Face.PARAGRAPH);
text.setClasses(getTextStyle());
container.addChild(text);