Im using this function to submit a form.
Is there a way from inside the function to pass a value as a request.form variable so I know that it was this function that submitted the form?
Thanks
Code:
function uClicked (theBox,myval){
var f = document.forms.form1;
if (!theBox.checked)
alert (myval);
f.submit();
}
[code]