// update Portfolios and Recent Quotes
function PortfoliosRecentQuotes () {
    this.done = function() {
        var c = new JsCommon();
        var thisUrl = window.location.href;
        
        if (thisUrl.indexOf("rqp=PO") != -1 && c.hasElement("aRecentQuotes"))
        {
            document.getElementById("aPortfilios").className = "NoLink";
        }
        else if(c.hasElement("aRecentQuotes"))
        {
            document.getElementById("aRecentQuotes").className = "NoLink";
        }
    }
}

// perform this process
var prc = new PortfoliosRecentQuotes();
prc.done();
