+5  A: 

Here's how:

http://www.webreference.com/js/tutorial1/opener.html

You'll have full access to any javascript methods in the parent opener simply by using

window.opener.myFunction(params);

Clarity EDIT:

window.opener.document.getElementById('myLabel').value = 'some text';
Joel Etherton
Remember about ASP.Net's name mangling
SLaks
Touche. Though there are several different ways to work around that. I'll wait for the next question on how to do that I suppose :)
Joel Etherton
I am trying on that way , but i got the error
drop
What error? I know this works because I have a production website which does it.
Joel Etherton