function ats_select(ats_id,lang)
{
    if (document.getElementById("ats_"+ats_id))
    {
        var div = document.getElementById("ats_"+ats_id);
        if (document.getElementById("subats_"+ats_id))
        {
            var subdiv = document.getElementById("subats_"+ats_id);
            subdiv.style.display = subdiv.style.display=="none" ? "" : "none";
            
        } else {
            ajax_add_div("ats_" + ats_id,'/ajax_manager.php',{module:'products',mgr:'products_site_mgr',action:'load_ats',ats_id:ats_id,lang:lang});
        }
        div.className = " sel";
        //div.style.className=="sel" ? "" : "sel";
    }
    return false
}