I am testing the access of a website with Phil Ide's LoadFromURL().
The task is to submit a name and birthdate to an organization's website so that it will email the member his Membership #.
My question is "Can a URL be inferred from the page URL?" 
The page is ASP:http://thegroup.org/events/forgotmyid.asp
This is the form:
<form name=form1 id=form1 method=post>
<input name =lastname id=lastname value="">
<input name =dob id=dob value="">
<input type=hidden name=txtDummy id=txtDummy value="dologin">
<input type=submit name=btnsubmit id=btnsubmit value="Submit">
</form>
 
I don't know where a form is submitted if there is nothing in ACTION attribute.  I ran the page code in the debugger to check and saw   document.form1.action = "" .  Is it possible to make a good guess from this information?