Javascript is not my language of expertise, so bare with me if you could.<br><br>I just wrote a short script which allows text to be passed from one window to another. It works fine with one word, but for 2 words (such as a full name) it does not work. I think tha fact that there is a space is not allowing it to work properly.<br><br>Does anyone have any suggestions as to how this could be handled. Thanks in advance for any help.<br><br>Jason Morris<br><A HREF="mailto:jmorris@pracom.com.au">jmorris@pracom.com.au</A><br><br>*****THE CODE******<br><br><html><br><head><br> <title>Untitled</title><br><script language="javascript"><br> function send(active){<br> parent.opener.document.formtest.name.value = (active)<br> }<br> </script><br></head><br><br><body><br><br><!-- THIS WORKS --><br><a href="#" onClick=send("John">John</a><br><br><!-- THIS DOESN'T WORK--><br><a href="#" onClick=send("John Doe">John Doe</a><br><br><br><br></body><br></html><br><br>