JspWriter w = pageContext.getOut();
try {
w.write("<div class=\"globalappmsg\">" + LS);
w.write("<div class=\"appmsg\">" + LS);
for (Iterator itMsgs = messages.iterator(); itMsgs.hasNext();) {
ApplicativeMessage msg = (ApplicativeMessage)itMsgs.next();
w.write(TAB + "<div class=\"msg"+msg.getType()+"\">");
writeIcon(w, msg);
w.write("<span>" + msg.toString() + "</span>");
w.write("</div>" + LS);
}
w.write("</div>" + LS);
w.write("</div>" + LS);
} catch (IOException e) {