Function openwin ()
{
OpenWindow = WINDOW.Open ("", "newwin", "height = 250, width = 250, toolbar = no, scrollbars =" scroll ", menubar = no");
// Write a line
OpenWindow.Document.write ("
example title>");
OpenWindow.Document.write ("
");
OpenWindow.Document.write ("
Hello! H1>");
OpenWindow.Document.write ("New Window Opened!");
OpenWindow.Document.write (" body>");
OpenWindow.Document.write (" html>");
OpenWindow.Document.Close ();
}
Script>
hEAD>
Open a window
body>
html>