instead of passing a value to alert: alert(v); which is a returned value from a function how can I write that value to a form field? how to just writing it into a form field instead of alerting it?
document.forms.FORMNAME.FIELDNAME.value = v;
I think it is