I am trying to figure out how to make a form quicker to fill out for my work, and it involves having a employee enter a patient's name in one text box, and then having that information duplicated in all other name text boxes. Here's what I'm thinking....
function FillName(f) {
{
f.FillNameBox1.value = f.wholename.value;
f.FillNameBox2.value = f.wholename.value;
}
}