var a = createElement("a");

function highlightNew() {
    if (document.getElementById("whatsnewstyle").disabled == true) {
        document.getElementById("whatsnewstyle").disabled = false;
        a.setAttribute("title", "не показывать, что тут есть нового");
    }
    else {
        document.getElementById("whatsnewstyle").disabled = true;
        var sw = document.getElementById("newswicth");
        a.setAttribute("title", "показать, что тут есть нового");
    }
}

function init2 () {
    init();
    a.appendChild(document.createTextNode("Что нового?"));
    a.setAttribute("href", "javascript:highlightNew()");
    a.setAttribute("class", "newlink");
    a.className = "newlink"; // MSIE:
    a.setAttribute("title", "показать, что тут есть нового");
    var whatsnew = document.getElementById("whatsnew");
    (whatsnew.parentNode).insertBefore(a, whatsnew);
    (whatsnew.parentNode).insertBefore(document.createTextNode(" "), whatsnew);
    highlightNew();
}

function formSel (label) {
    document.getElementById(label.htmlFor).checked = true;
}
