Re: Reference input without ID



Don't provide any ID or name for the forms and provide the same ID for
all input boxes. Then reference them by:

document.forms[0].element['criteria']
document.forms[1].element['criteria']
document.forms[2].element['criteria']

HTH

.