cool, glad to hear that. I didnt test if fully but if you redirect everything to a page with the following code you should be able to see whats going on.
Code:
<?php
// This Page Displays the Users IP, User Agent, and Referrer
$html = "<html><head><title>Referral Check</title></head><body>";
$html .= "<br />Client IP: " . $_SERVER['REMOTE_ADDR'];
$html .= "<br />User Agent: " . $_SERVER['HTTP_USER_AGENT'];
$html .= "<br />Referrer: " . $_SERVER['HTTP_REFERER'];
$html .= "<br />Query: " . $_SERVER['QUERY_STRING'];
$html .= "</body></html>";
echo $html;
?>