<!-- 

function ol_api(apinm , area_t , area_k , trkwd , in_ids){
	httpObj = createXMLHttp();
	if(httpObj){
		httpObj.onreadystatechange =function(){
			if(httpObj.readyState ==4 && httpObj.status == 200){
				document.getElementById(in_ids).innerHTML = httpObj.responseText;
			}
		}
	httpObj.open("get",apinm+"?areatype="+area_t+"&areakey="+area_k+"&keywrd="+trkwd,true);
	httpObj.send(null);
	}
}

function createXMLHttp(){
	try{
		return new XMLHttpRequest();
	}catch(e){
		try{
			return new ActiveXObject("Microsoft.XMLHTTP");
		}catch(e){
			return null;
		}
	}
	return null;
}

-->
