<HTML><HEAD><TITLE>Writing to Subwindow</TITLE><SCRIPT LANGUAGE="JavaScript">var newWindowfunction go_to_demo() { newWindow = window.open("","","status,height=200,width=300")}function subWrite() { if (newWindow.closed) { go_to_demo() } newWindow.focus() var newContent = "<HTML><HEAD><TITLE>A New Doc</TITLE></HEAD>" newContent += "<BODY BGCOLOR='coral'><H1>This document is brand new.</H1>" newContent += "</BODY></HTML>" newWindow.document.write(newContent) newWindow.document.close() // close layout stream}</SCRIPT></HEAD><BODY onLoad="go_to_demo()"><FORM><INPUT TYPE="button" VALUE="Write to Subwindow" onClick="subWrite()"></FORM></BODY></HTML>
Name (required)
email (will not be published) (required)
Website