> Kris Pilles wrote:

>>Any idea why this isn't working??? Tells me opener.document is not
>>defined????
>>
>>
>>function setForm() {
>>    opener.document.Form1.name.value = document.name2.employees.value;
>>    self.close();
>>    return false;
>>}
>>//--></script>

You might want to qualify opener as window.opener

function setForm() {
        winopen = window.opener;
        winopen.document.Form1.name.value = document.name2.employees.value;
        window.close(); return;
}

Isaac Dealey
Certified Advanced ColdFusion Developer

www.turnkey.to
954-776-0046
______________________________________________________________________
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to