I continue to have difficulty with this step and I'm sure there's a way to do it. If at all possible, I don't want the user of this form to see anything other than the box "Submit Form?". Here is part of my code, maybe someone could take a look and tell me where I need to put "return confirm" and the alert "Submit Form?" I've taken out the "return confirm" statment and alert, since no matter where I put them, I can't get it to work. I have tried:
onSubmit= return(confirm(Validate()));, but then I get a box that says "object undefined".
function Validate()
{
f = document.form1
if ( f.FName.value == ""

{
alert('Please enter your First Name.')
event.returnValue=false;
return;
More validation goes here then:
{
f.submit();
}
}
// done hiding code-->
</script>
</HEAD>
<BODY>
<TR>
<form action="
method="post" onSubmit=Validate(); id="form1" name="form1">
<input type="hidden" name="fcount" value="24"><input type="hidden" name="thanksurl" value="
type="hidden" name="recipient" value="cs@MyCompany.com">
<input type="hidden" name="subject" value="Name of Form">
</TR>
Lots more code, then:
<TD> <input type="Submit" name = "Submit" value="Request Written Proposal" >
Thanks again in advance for your time and efforts.
Christine