Kopier fra textbox til textbox del II
<form action="#" name="fForm" METHOD="POST" onSubmit="myFunk(this)"><input type="text" name="textBox1">
<input type="text" name="textBox2">
<input type="Submit">
<form>
<script>
function myFunk(fForm){
fForm.textBox2.value = fForm.textBox1.value;
alert (fForm.textBox2.value);
}
</script>
Men den skal lige checke på om textBox2 er tom først
