
/*
Profile Views
Version 1.0

Copyright 2006 Bradley Nelson a.k.a CCWorld
All Rights Reserved

For use on Proboards Boards only.
This Header must remain intact at all times.
Do not re-post without permission.

Main Code
*/

var usnOVP;
var usnOVB;

function doProViewLoaderThingy(){
    location.href.match(/http\:\/\/(www\.)?([a-z0-9]+?)\.proboards/i);
    usnOVB = RegExp.$2
    if (location.href.match(/user=([a-z0-9]+)/i)){
        usnOVP = RegExp.$1;
    }
    else if (pb_username != "Guest"){
        usnOVP = pb_username;
    }
    else {
        return false;
    }
    document.write("<sc"+"ript type=\"text/javascript\" src=\"http://proboards.the-ccw.net/pb/proviews/logger.aspx?u="+usnOVP+"&amp;b="+usnOVB+"\"></sc"+"ript>");
}

if (location.href.match(/tion=viewprofile/i)){
    doProViewLoaderThingy();
}
