Ok, try this:

1) View the source for second page and save the page to a file called "c:\fixrate.htm" (whatever) ...

2) Runthe following script ...

Break On

$URL = "file://c:\fixrate.htm" ; --- change this to whatever

$IE = CreateObject("InternetExplorer.Application")

$IE.Visible = 1

$IE.Navigate($URL)

While $IE.Busy and $IE.ReadyState <> 4 and @ERROR = 0 Loop
While $ie.document.readystate <> "complete" and @error = 0 loop

$IE.document.fixrates.posting.value = 1

?"value=" $IE.document.fixrates.posting.value

$IE.document.fixrates.submit()

This demonstrates a couple of things - that the objects once they are loaded are resolving correctly - plus the submit is working correctly ... i think its the transition from one page to the next that is gumming the works ... after trying, can you send me source for the first page as well ?

-Shawn