Issue with MessageBox renderIt()

Hey, all. Having an issue with the message box rendering. Oddly
enough, when I make the call below (and yes, I have tested the isEmpty
() and dumped the getMessage() return value) I get the css output in
the <head>, but not the messageBox content. Any ideas?

    <cfoutput>
      <!--- Render the messagebox, if a message is ready --->
      <cfif not getPlugin('messagebox').isEmpty()>
        <cfset getPlugin('messagebox').renderit() />
      </cfif>
    </cfoutput>

- WB

It should not be in a . Just simply

#getPlugin('messagebox').renderIt()#

Wow...I'm a genius. Okay...maybe not. Heh. Thanks, Matt. What a
"duh" moment for me.