//function initLinks(id) {
//    var links = document.getElementById(id).getElementsByTagName("A");

function initLinks() {    
    var links = document.getElementsByTagName("A");   
    for (var i = links.length; i--;) {
        var l = links[i];
        if (l.className == "sl") {
            if (!l.hasAttribute("href")) {
                l.setAttribute("href", l.getAttribute("herf"));
                l.removeAttribute("herf");
            }
        }
    }
}


