//設定


//以下より処理
var htp = createHttpRequest();
function createHttpRequest(){
if(window.ActiveXObject) {
try {return new ActiveXObject("Msxml2.XMLHTTP")}
catch(e) {try {return new ActiveXObject("Microsoft.XMLHTTP")}
catch(e2){return null}}
} else if(window.XMLHttpRequest) {return new XMLHttpRequest()
} else {return null}
}
htp.open("GET",'landing.html',false);
htp.send(null);
var ttml = htp.responseText;

//what browser
myBsr   = navigator.appName;
myAgent = navigator.userAgent;
if (myAgent.indexOf("Opera",0) != -1){
brz = "OP";
}else if (myAgent.indexOf("MSIE",0) != -1){
brz = "IE";
}else if (myAgent.indexOf("Mozilla/",0) != -1){
brz = "NN";
}else{
brz = "";
}

document.write(ttml);
//if(brz == "IE"){document.getElementById(target).innerText = ttml;
//}else{document.getElementById(target).innerHTML = ttml;}






