is it possible through php and the header("Location:page.php") to send someone back to the referring page.
John
$_GLOBALS[HTTP_REFERER] should give you the address of the refering page. So ... perhaps:
header("Location: $GLOBALS[HTTP_REFERER]");
might do the trick?