Hi, I have a web application, where we had to open a popup from parent page, search for users, select one user and click ok. The selected user will now be displayed on the parent page. The code used to open the popup window is as follows var url = "searchPage.xhtml"; var popUp = window.open(url,"POPUP","width=680,height=450,scrollbars=yes,menubar=yes,resizable=no"); This code works fine But now ...