function bukgu_count() { 

        var xmlhttp= new ActiveXObject("Microsoft.XMLHTTP");
        xmlhttp.open('GET','http://www.yeongnam.com/yeongnam/bukgu_count_test.jsp',false);
        xmlhttp.setRequestHeader('Content-Type','application/x-www-form-urlencoded;charset=UTF-8');
        xmlhttp.onreadystatechange = function ()
        {
            if(xmlhttp.readyState == '4')
            {

                // ÆäÀÌÁö¿¡¼­ Ãâ·ÂµÈ ÅØ½ºÆ®¸¦ xmlhttp.responseText ·Î ¹Þ¾Æ¿É´Ï´Ù.
                //alert(xmlhttp.responseText);

             // °á°ú°ª¿¡ µû¸¥ Ã³¸® ·ÎÁ÷ ±¸Çö
            }
        }

        xmlhttp.send();

}