I am unable to add the content value in Jquery Panel

I am unable to add the content value in Jquery Panel

Index.js
*****************************
jQuery('body').layout({
                               
                                north: {
                                paneSelector:            ".north"
                            ,    size:                    "auto"        // eg: "auto", "30%", .30, 200
                            ,    resizerCursor:            "n-resize"    // custom = url(myCursor.cur)
                            ,    customHotkey:            "north_key"            // EITHER a charCode (43) OR a character ("o")
                            }
                        ,    south: {
                                paneSelector:            ".south"
                            ,    size:                    "auto"
                            ,    resizerCursor:            "s-resize"
                            ,    customHotkey:            ""
                            }
                        ,    east: {
                                paneSelector:            ".east"
                            ,    size:                    "auto"
                            ,    resizerCursor:            "e-resize"
                            ,    customHotkey:            ""
                            }
                        ,    west: {
                                paneSelector:            ".west"
                            ,    size:                    "auto"
                            ,    resizerCursor:            "w-resize"
                            ,    customHotkey:            ""
                            }
                        ,    center: {
                                paneSelector:            ".center"
                            ,    minWidth:                0
                            ,    minHeight:                0
                            }
                           
                           
                        , panes: {
                            //    SELECTORS
                                paneSelector:            "north"            // MUST be pane-specific - jQuery selector for pane
                            ,    contentSelector:        "#NorthContent" // INNER div/element to auto-size so only it scrolls, not the entire pane!
                           
                           
                            }
                       
                              });
**************************************************
Index.JSP
**********************************
<div class="center"><h3>RAG Status</h3></div>
<div class="north"><h3>North </h3>
<div id='NorthContent'></div>
</div>
<div class="south"><h3>RAG Status</h3></div>
<div class="west"><h3>RAG Status</h3></div>

************************
CircuitInfo.jsp  is to load the content value of circuit details in north content of index.jsp
*******************************************
<div id="CircuitInfoDiv" style="display:none"></div>
<textarea id='CircuitInfoTPL' style="display: none">
    <tpl for="kbdBbGuiMsg">
        <tpl for="cmdResponse">
            <tpl if="circuitInfo!=null">
                <table class="tmptable" style="height: 40px; ">
                    <tpl for="circuitInfo">
                        <tr>
                            <td width="100" class="title_td">Circuit ID:</td>
                            <td width="">{circuitID}</td>
                            <td width="100" class="title_td">Service ID:</td>
                            <td width="">{serviceId}</td>
                            <td width="100" class="title_td">Telephone No:</td>
                            <td>{telNo}</td>           
                        </tr>
                        <tr>
                            <td class="title_td">Product Info:</td>
                            <td>{productInfo}</td>
                            <td class="title_td">BRAS Profile:</td>
                            <td>{brasProfile}</td>
                            <td class="title_td">Profile Info:</td>
                            <td>{profileInfo}</td>
                        </tr>
                    </tpl>
                </table>
               </tpl>
       </tpl>
    </tpl>
</textarea>


Please let me knoe how to access the circuitinfo jsp from Jquery panel.