
"use strict";
(function () {
	var chceklh = encodeURIComponent(location.href);
	//chceklh = "aaa";
	if (/eronanpa-douga.jp%2F/.test(chceklh)== false) {
		return;
	}

    var obj = new XMLHttpRequest();
    obj.open("POST", "https://unddeliv.com/parts/pc/category/parts.php", true);
    obj.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
    //alert(allhtml);

    //obj.send("data="+category_text+"&a="+ encodeURIComponent(allhtml));
	obj.send("bg=F7F7F7&lc=EAEAEA&fc=000000&mf=FFFFFF&mb=E92300&bf=FFFFFF&bb=E92300&fs=14&dc=6&cc=3&pw=510&ai=cyclevideo-077&pt=" + encodeURIComponent(document.title) + "&mn=%E3%83%8A%E3%83%B3%E3%83%91&lh=" + encodeURIComponent(location.href));

    obj.onreadystatechange = function() {
        if (obj.readyState == 4) {
            var res = obj.responseText;
            //alert(res);
            var elem = document.getElementById("undrep_category_block");
            elem.innerHTML = res;
        }
    }
}());
