public static void writeMenu(
     JspWriter out,
     RequestProperties reqState,
     String menuID,
     boolean expandableMenu,
     boolean showIcon,
     int descriptionType,
     boolean showMenuHelp)
     throws IOException {
   ExpandMenu.writeMenu(
       new PrintWriter(out, out.isAutoFlush()),
       reqState,
       menuID,
       expandableMenu,
       showIcon,
       descriptionType,
       showMenuHelp);
 }