<script type="text/javascript">
function parent_work_copy(track_number) {
document.form1.track_(track_number)_name.value=document.form1.track_(track_number)_parent_work.value;
}
</script>
If the link below is clicked, I want the line inside of the parent_work_copy function to be modified to:
document.form1.track_5_name.value=document.form1.track_5_parent_work.value
<a href="javascript:parent_work_copy(5)">copy to track</a>
How to do this?