function abl_c(el){	var el=el.parentNode.childNodes[1];	if (el.style.display=='block'){el.style.display='none';}else el.style.display='block';}function doload_2(object,element,path,ection_start,ection_end){         if (ection_start){eval(ection_start);}         var req = new JsHttpRequest();         req.onreadystatechange = function() {            if (req.readyState == 4) {                   //debugger;                  //alert(req.responseText);                //alert(req.responseJS);                 if (document.getElementById(element) && req.responseText) {document.getElementById(element).innerHTML = req.responseText;}                 if (req.responseJS){eval(req.responseJS);}                                  var temp=typeof(ection_end);                 if (typeof(ection_end)=="string"){eval(ection_end);}                 if (typeof(ection_end)=="function"){ection_end();}            }        }        req.open(null, path, true);        req.send(object);    }
