function bh_counter(ip,country,folder,type){
    xmlHttpCount=GetXmlHttpObject();
    var url="/article/counter.php";
    url += "?ip="+ip;
    url += "&country="+country;
    url += "&folder="+folder;
    url += "&type="+type;
    xmlHttpCount.open("GET",url,true);
    xmlHttpCount.send(null);
}