//ブラウザによって表示方法の切り替え
function DispHTML(Layers, hMes) {
	if (document.layers) {
		with(document.layers[Layers]) {
			document.open();
			document.write(hMes);
			document.close();
		}
	} else if (document.all) {
		with(document.all(Layers)) {
			innerHTML=hMes;
		}
	} else if (document.getElementById) {
		with(document.getElementById(Layers)) {
			innerHTML=hMes;
		}
	}
}
// XMLHttpsオブジェクト作成
function createXMLHttp(){
	try {
		return new ActiveXObject ("Microsoft.XMLHTTP");
	}catch(e){
		try {
			return new XMLHttpRequest();
		}catch(e) {
			return null;
		}
	}
	return null;
}
