function grouped() {
    if(document.getElementById("grouped")) {
        var ar = document.getElementById("grouped").getElementsByTagName("div");
        var mas = new Array();
        var j=0;
        for (var i=0; i<ar.length; i++){
            if (ar[i].className=="main_cat_middle") {
                if(ar[i].offsetHeight>j) {
                    j = ar[i].offsetHeight;
                }
            }
        }
        for (var i=0; i<ar.length; i++){
            if (ar[i].className=="main_cat_middle") {
                ar[i].style.height = j + 'px';
            }
        }
    }
}
function autko() {
    if(document.getElementById("capt")) {
        var t = document.getElementById("capt");
        t.setAttribute("autocomplete", "off");
    }
}

function setCookie(name, value, expires, path, domain, secure) {
document.cookie = name + "=" + escape(value) +
((expires == null) ? "" : "; expires=" + expires.toGMTString()) +
((path == null) ? "" : "; path=" + path) +
((domain == null) ? "" : "; domain=" + domain) +
((secure == null) ? "" : "; secure");
}

function adult(url) { 
    var res = confirm("Потвърждавам, че имам навършени 18 години");
    if(res) {
        var date = new Date();
        date.setTime(date.getTime()+(1*24*60*60*1000));
        setCookie('webjo_adult','true',date)
        window.location = url;
    } else {
        return false;
    }
}

window.onload = function () { 
    grouped(); 
    autko();
    var url = document.location.href;
    res = url.split('#');
    if(typeof res[1] == 'string') {
        row.expand(res[1]);
    }
}
