//Display.js 1.3
var url="http://www.i-sougi.net/";
var cgi=false;
function DisplayShow(tempId,outId){
	var xhr=null;
	if(window.XMLHttpRequest){
		xhr=new XMLHttpRequest();
	}else if(window.ActiveXObject){
		try{
			xhr=new ActiveXObject("Msxml2.XMLHTTP");
		}catch(e){
			try{
				xhr=new ActiveXObject("Microsoft.XMLHTTP");
			}catch(e2){
			}
		}
	}
	if(xhr==null){
		return;
	}
	if(cgi){
		xhr.open("GET",url+"js/Display.cgi?"+tempId,false);
	}else{
		xhr.open("GET",url+"js/Template/"+tempId+".txt",false);
	}
	xhr.send("");
	if(xhr.readyState==4){
		document.getElementById(outId).innerHTML=xhr.responseText;
	}
}
function DisplayClose(closeId){
	document.getElementById(closeId).innerHTML="";
}
function DisplayRollOver(obj,fileName){
	obj.src=fileName;
}
