Доброго вечера всем!Возник вопрос по поводу того как занести значение с текстового поля в скрипт.Не хочет работать и все тут.
function one()
{ var id;
var wow = document.getElementById('wow');
id=window.open("","example","width=400,height=150");
id.focus();
id.document.open();
id.document.write("Hello");
id.document.write(wow);
id.document.write("<form>");
id.document.write("<input type=\"button\" value=\"Закрыть окно\" onclick=\"window.close();\"></form>");
id.document.close();
}
<table>
<tr>
<td class="no3">Какие-нибудь данные:</td>
<td><input class="pole" type="text" id="wow"></td>
</tr>
</table>
<input class="no1" type="button" value="Отправить" onclick="one()"/>