How can I pass some data or call a function on the parent window from a popup window?
The user will click a link which will open a popup on the same website, once he is
The window.opener object is what you're looking for, used it from within your popup like so to call the a function of the parent window:
window.opener.yourFunc()