I need to display a new popup window by clicking a link. This popup should always on top of other windows and the controls (i.e. Textbox, DropdownList) in the underyling windows should still be editable. I did some googling around and most of the solutions I found involve in on focusing the popup windows when the ‘OnBlur’ event is triggered:
<body onblur=‘javascript:self.focus();’>
However, by doing so, the fields in the underlying windows will not be editable since the focus is always on the popup. Any suggestions on how I can implement this? Thanks in advance.