﻿// JScript File
function setActiveStyleSheetAndClass(title) 
{
    var i, a, b;
    
    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;
            }
        }
    }
    
    for(i = 0; (b = document.getElementsByTagName("a")[i]); i++) 
    {
        if (b.getAttribute("id"))
        {
            if (b.getAttribute("id") == "SmallFont" || b.getAttribute("id") == "DefaultFont" || b.getAttribute("id") == "LargeFont")
            {
                if (b.getAttribute("id") == title)
                {
                    b.setAttribute("className", title + "1");
                }
                else
                {
                    b.setAttribute("className", title + "0");
                }
            }
        }
    }
}
