﻿function SetCurrentForumsPage(strPageLinkId) {
    if (strPageLinkId.indexOf('PageLink') == -1) {
        strPageLinkId = strPageLinkId + "PageLink";
    } 
    oPageLink = document.getElementById(strPageLinkId);
    if (oPageLink) {
        if (oPageLink.className != "") {
            oPageLink.className = oPageLink.className + " currentPage";
        } else {
            oPageLink.className = "currentPage";
        }
    }
}
