6 <style type="text/css">
8 * {font-family: Arial, Helvetica, Sans-Serif; font-size: 12px;}
12 <script type="text/javascript">
14 function SubmitForm() {
15 rows = document.getElementById('rows').value;
16 cols = document.getElementById('cols').value;
17 border = document.getElementById('border').value;
18 head = document.getElementById('head').value;
19 window.opener.CreateTable(rows, cols, border, head);
26 <body onload="this.focus();">
29 <table border="0" cellspacing="4" cellpadding="4">
33 <td><script type="text/javascript">document.writeln(opener.EpozLang["EnterTableRows"]);</script></td>
34 <td><input type="text" name="rows" id="rows" size="5" value="3" /></td>
38 <td><script type="text/javascript">document.writeln(opener.EpozLang["EnterTableColumns"]);</script></td>
39 <td><input type="text" name="cols" id="cols" size="5" value="3" /></td>
43 <td><script type="text/javascript">document.writeln(opener.EpozLang["EnterTableBorder"]);</script></td>
44 <td><input type="text" name="border" id="border" size="5" value="1" /></td>
49 <select id="head" name="head">
50 <option value="0"><script type="text/javascript">document.writeln(opener.EpozLang["TableWithoutHead"]);</script></option>
51 <option value="1"><script type="text/javascript">document.writeln(opener.EpozLang["TableWithHead"]);</script></option>
58 <button type="button" onclick="return SubmitForm();"><script type="text/javascript">document.writeln(opener.EpozLang["InsertTable"]);</script></button>