ResponseWriter old = _facesContext.getResponseWriter();
// ExtendedRenderKitService will write out a <script> element.
// We want to replace it with <eval> and surround the script with CDATA
// All attributes will be ignored
ResponseWriter xml = new ResponseWriterDecorator(_xml)
{
public void startElement(String name, UIComponent component) throws IOException
{
if ("script".equalsIgnoreCase(name))
{