Save the page to an html file on your comp. Edit the "action" field in the page's form so that it posts to a simple cgi script on your web server. The cgi script will take note of the request for counting purposes and will then redirect you to the proper url.
Code:
#! /usr/bin/tclsh
set token [open counter.txt a+]
set count [gets $token]
close $token
if { $count == "" } {
set count 0
}
incr count
set token [open counter.txt w]
puts $token $count
close $token
puts "Location: http://therealurl.com/script.cgi\n"
It might work...