/* (non-Javadoc)
   * @see javax.servlet.jsp.PageContext#include(java.lang.String, boolean)
   */
  public void include(String url, boolean b) throws ServletException, IOException {
    RequestUtil.include(getServletContext(), getRequest(), getResponse(), url);

    // make sure everything is flushed before doing an include -- important for included JSP files
    flushOut();
  }