function CallBlog()
{
document.getElementById("info_blog").innerHTML ="";
httpObj = createXMLHttpRequest(displayData);

if (httpObj)
{
httpObj.open("GET","./info_top.cgi" ,true);
httpObj.send(null);
}
}


function displayData()
{
if ((httpObj.readyState == 4) && (httpObj.status == 200))
{

var text = httpObj.responseText;
if ( navigator.appVersion.indexOf( "KHTML" ) > -1 ) {
var esc = escape( text );
if ( esc.indexOf("%u") < 0 && esc.indexOf("%") > -1 ) {
text = decodeURIComponent( esc );
}
}

document.getElementById("info_blog").innerHTML = text;
}else{
if(document.getElementById("info_blog").innerHTML == ""){
document.getElementById("info_blog").innerHTML = "<div align='center'>[h...</div>";
}
}
}


function createXMLHttpRequest(cbFunc)
{
	var XMLhttpObject = null;
	try{
		XMLhttpObject = new XMLHttpRequest();
	}catch(e){
		try{
			XMLhttpObject = new ActiveXObject("Msxml2.XMLHTTP");
		}catch(e){
			try{
				XMLhttpObject = new ActiveXObject("Microsoft.XMLHTTP");
			}catch(e){
				return null;
			}
		}
	}
	if (XMLhttpObject) XMLhttpObject.onreadystatechange = cbFunc;
	return XMLhttpObject;
}

function $(tagId)
{
	return document.getElementById(tagId);
}







