* @param title
* @return
*/
private Portlet createPortlet() {
Portlet contactPortlet = new Portlet();
contactPortlet.setDraggable( false );
contactPortlet.setCollapsible( false );
contactPortlet.setLayout( new FitLayout() );
contactPortlet.setVisible( false );
contactPortlet.setTitle( null );
return contactPortlet;
}