3 <title>Test Title
</title>
4 <script type=
"text/javascript">
6 // Create a new popup window
7 var oWnd
= window
.open('','MyPopupName','width=350,height=300',false);
9 // Dynamically generate the HTML content for popup window
12 + '<head><title>My Popup Title</title></head>'
16 // Push the HTML into that window
17 oWnd
.document
.write(sHtml
);
20 oWnd
.document
.close();
25 <p>This is dynamic1.html
</p>