
<SCRIPT> /*tells the browser to create a child window, using the "little.htm" file, and naming it newWin. The rest of the line specifies the child's "featureList". */ newWindow = open('little.htm', 'newWin', 'toolbar=yes,location=yes,scrollbars=yes,width=300,height=100'); </SCRIPT> <BODY> <FORM NAME="outputForm"><INPUT TYPE="TEXT" NAME="msgLine" VALUE> </FORM>
<SCRIPT> /* the textfield is the value passed from the form below (on this child page) */ function updateParent(textField) { /*
} </SCRIPT> <BODY> <FORM> |