Both of the existing site fixes are easy, the urls are merely different.
Face Book Fix
:
Look for:
PHP Code:
<a href="#" onclick="openWindow('http://www.facebook.com/home.php?#/profile.php?id=$userinfo[sn_facebook]&ref=profile'); return false;">
Change it to read:
PHP Code:
<a href="#" onclick="openWindow('http://www.facebook.com/$userinfo[sn_facebook]'); return false;">
-----
MySpace Fix
:
Look for:
PHP Code:
<a href="#" onclick="openWindow('http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=$userinfo[sn_myspace]'); return false;">
Change it to read:
PHP Code:
<a href="#" onclick="openWindow('http://www.myspace.com/$userinfo[sn_myspace]'); return false;">