> Dunno if this can be done - I want to pop up a javascript alert with
> an 'OK' and 'Cancel' button. Of course the cancel button lets the
> page just kinda sit there, whereas 'OK' proceeds to submit the form.
if(confirm("Do you REALLY wish to submit this form?")) {
document.forms[0].submit();
}
HTH
Chris Marsh