I designed all my pages as pop-ups except the main.xhtml. All dialogs are in different xhtml pages. So, I have to include these pages in main page. My main page is like:
<ui:include src="../pages/dialog1spage.xhtml"/>
<ui:include src="../pages/dialog2spage.xhtml"/>
<h:outputLink onclick="dialog1.show()";/>
<h:outputLink onclick="dialog2.show()";/>
However this kind of design really slows down my system. Because when I enter the main page all controllers depending to these dialogs triggered. But I want that It should only enter the page I clicked.It should not trace all pages I included.