<p id="insertform"><b>Каким браузером в основном пользуетесь:</b><Br>
<input type="radio" name="browser" value="ie"> Internet Explorer<Br>
<input type="radio" name="browser" value="opera"> Opera<Br>
<input type="radio" name="browser" value="firefox"> Firefox<Br>
</p>
<form name="test" method="post" action="input1.php">
<p><b>Ваше имя:</b><br>
<input name="nick" type="text" size="40">
</p>
<p>Комментарий<Br>
<textarea name="comment" cols="40" rows="3"></textarea></p>
<p><input type="submit" value="Отправить" onclick="FormAssembly ();return false;">
<input type="reset" value="Очистить"></p>
</form>
<script type="text/javascript">
function FormAssembly () {
alert('Tут нужно засунуть внешние элементы форму и сабмитим submit()') //
document.forms.test.submit()
}
</script>