﻿function setActiveStyleSheet(title) {
    var i, a, main;
    for (i = 0; (a = document.getElementsByTagName("link")[i]); i++) {
        if (a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) {
            a.disabled = true;
            if (a.getAttribute("title") == title) a.disabled = false;
        }
    }
}

function GetReportATypoPagePath() {
    var retVal = '/_layouts/ohawcm/ReportATypo.aspx';
    var pageUrl = location.href;
    var sPath = window.location.pathname;
    if (sPath != null) {
        var pageName = sPath.substring(sPath.lastIndexOf('/') + 1);
    }
    if (pageName != null && pageUrl != null) {
        retVal = retVal + '?PageUrl=' + pageUrl + '&PageName=' + document.title;
    }
    window.location = retVal;
}
