Popup Not show from the second page

Hi. In my app, I have 3 tabs.
>

<div class="statusbar"></div>
<div class="views tabs ios-edges">
<div id="view-home" class="view view-main tab tab-active">
<div class="page" data-name="home" id="home">
<div class="right" style="width:12%;">
< a href="/search_filters/" class="link icon-only" style="padding: 3px;">
...
</a>
</div>
</div>
</div>
<div id="view-catalog" class="view tab"></div>
<div id="view-settings" class="view tab"></div>

<div class="popup " id="show_selected_ads_popup">
                <div class="view">
                    <div class="page">
....
</div></div></div>
</div>

I load some content via ajax from the server and then I choos one of them that “show_selected_ads_popup” popup will open and every thing is ok .
After click on the “search_filters” link, The search_filters page will open. Ajax loads the contents from the server and shows the content in the “mix_search_ads_popop” popup. After clicking on the links the “show_selected_ads_popup” popup will open but we have tow popup with “modal-in” class And “show_selected_ads_popup” doesn’t show. What do I have to do?

Any Reply? I need to solve this problem.