Hi, I am having a page which opens a popup page when i click, first time everything is going fine. once the window is closed if again i want to open the popup window i am getting pagenot found exception in my parent page. Both my child and parent are jsf pages.
this is javascript in my parent form _______________________________________________ popup=window.open('PopupList.jsp', "popup", "height=500,width=350,toolbar=np,menubar=no,"+ "scrollbars=no");
if (!popup.opener) popup.opener = self; popup.focus(); return false; _____________________________________________________________________ My child window code