cfdiv bind - no results displayed
I am on GoDaddy, windows, CF8 and got rid of most of the no-permissions errors by using the CFAJAXIMPORT tag, but my bind elements are not loading. when I view the page source, coldfusion seems to have built the Javascript funtions to load the div, but does not actually load the div with the text from more_text.cfm. tried CFPod too, but bind fails there as well.
main.cfm
<cfajaximport scriptsrc="root/CFIDE/scripts/" tags="cfdiv" >
<cfset str = "hello world" />
<cfoutput><h1>#str#</h1></cfoutput>
<cfdiv bind="url:more_text.cfm" id="b1" bindonload="true" tagname="b_1" />
more_text.cfm
<p>Here is some more text for the div</p>
