I would use code like this in biterscripting.
Assume the two pages to post are "http://www.site1.com/post.asp" and "http://www.site2.com/post.asp".
Here is the code
# Script Post2.txt
# Start two sessions.
isstart s1 "site1" "Mozilla/4.0" ; isstart s2 "site2" "Mozilla/4.0"
# Connect sessions to site1 and site2.
iscon s1 "http://www.site1.com" ; iscon s2 "http://www.site2.com"
# Post forms.
ispost s1 "post.asp" "fieldname=fieldvalue" ; ispost s2 "post.asp" "fieldname=fieldvalue"
# Disconnect and end sessions.
isdiscon s1 ; isdiscon s2
isend s1 ; isend s2
Can do more fancy work with internet sessions. Details at http://www.biterscripting.com/helppages_automatedinternet.html .