newContent.addElement(errorDiv);
}
if(notices != null && notices.size() > 0) {
UL noticeList = new UL();
for(Iterator it=notices.iterator(); it.hasNext();) {
noticeList.addElement(new LI( (String) it.next() ));
}
Div noticeDiv = new Div().addElement(noticeList);
noticeDiv.setID(noticeCssId);
newContent.addElement(noticeDiv);