﻿//========================================//
// PHPカウンター呼び出し用スクリプト
// 作成:beny_to
// URL:http://www.beny.to/
// 2008/4/12 ver1.00 作成
//========================================//

//================初期設定================//
//ディレクトリの位置
BCounterPath='./b_counter/';
//========================================//

document.write('<script type="text/javascript" src="'+BCounterPath+'lib/jslb_ajax.js"></script>');
document.write('<span id="b_counter"></span>');

function setCounter(){
   sendRequest(onloaded,'','GET',BCounterPath+'b_counter.php',true,true);
}

//受信時処理
function onloaded(res){
   xmldoc=res.responseXML
   writeData('b_counter',xmldoc);
}

//HTML出力
function writeData(tableId,dataAry){
   var total=dataAry.getElementsByTagName('total')[0].firstChild.nodeValue;
   var today=dataAry.getElementsByTagName('today')[0].firstChild.nodeValue;
   var yesterday=dataAry.getElementsByTagName('yesterday')[0].firstChild.nodeValue;

document.getElementById(tableId).innerHTML='計：'+total+'&nbsp;T：'+today+'&nbsp;Y：'+yesterday+'';

}

window.onload=function(){
        setCounter();
};

