Changes I had to make:
(A)
-- Change the following line to be the domain name or IP address of your
MacHTTP server
set script_server_addr to "olmo.swarthmore.edu"
set doc_server_addr to "olmo.swarthmore.edu"
(B) set redirect_head to "HTTP/1.0 302 Found" & crlf & "Location: http://mathforum.org"
(C)
--doc to return to on the off chance that something screws up.
set parent_doc to redirect_head & " http://mathforum.org/~sarah/"
(D)
--rect http://mathforum.org/~steve 15,57 85,169
--rect http://mathforum.org/dr.math/dr-math.html 93,14 186,90
- from circles.imagemap.gif.map: 93,186 and 14,90 are the
x,y coordinates for the region marked off for Dr. Math
- the URL for Dr. Math is
http://mathforum.org/dr.math/dr-math.html
- these coordinates and the URL get plugged into the script
like this:
else if x > 93 and x < 186 and y > 14 and y < 90 then
return redirect_head & "/dr.math/dr-math.html"