Nevermind I figured it out, it's supposed to be rsAG for the guests, so if anyone else wants to do this replace line 179:
response.write " <td bgcolor=""" & CColor & """ align=center valign=middle nowrap><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """>" & rsAM("AU_IP") & "</font></td>" & VBNewLine
with this:
response.write " <td bgcolor=""" & CColor & """ align=center valign=middle nowrap><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><a href=http://ws.arin.net/cgi-bin/whois.pl?queryinput=" & rsAM("AU_IP") & " target=_blank>" & rsAM("AU_IP") & "</font></td>" & VBNewLine
And also replace line 224:
response.write " <td bgcolor=""" & CColor & """ align=center valign=middle nowrap><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """>" & rsAG("AU_IP") & "</font></td>" & VBNewLine
with this:
response.write " <td bgcolor=""" & CColor & """ align=center valign=middle nowrap><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><a href=http://ws.arin.net/cgi-bin/whois.pl?queryinput=" & rsAG("AU_IP") & " target=_blank>" & rsAG("AU_IP") & "</font></td>" & VBNewLine
Cheers!
-Spy