Hello,
Just in case someone is trying to do this with their HTML templates ..... I found this code I thought i would share

<script>
function copyValues() {
document.form1.hiddenImage1.value = document.form1.Image1.value;
document.form1.hiddenImage2.value = document.form1.Image2.value;
}
</script>
<form id="form1" name="form1" method="post" action="">
<label>hidden</label>
<input type="text" name="hiddenimage1" id="hiddenImage1" />
<input type="text" name="hiddenimage2" id="hiddenImage2" />
<label>Visible</label>
<input type="text" name="Image1" id="Image1" />
<input type="text" name="Image2" id="Image2" />
<button name="submit" value="submit" type="button" onClick="copyValues();">Submit</button>
</form>
****Note****I have attached it to onClick but you could use it with onSubmit.
Also try and avoid using spaces in "id's" - saves huge headaches later on!
