function defaultw(world){
	var ajaxRequest = ajaxR();
	
	document.getElementById("loading").style.display = "";
	
	ajaxRequest.onreadystatechange = function(){
		if(ajaxRequest.readyState == 4){
			ajaxRequest.responseText;
			document.getElementById("loading").style.display = "none";
		}
	};
	
	ajaxRequest.open("GET","/defaultw.php?w="+world+"&t="+new Date().getTime());
	ajaxRequest.send(null);
}

function ajaxR(){
	var ajaxRequest;
	try{
		ajaxRequest = new XMLHttpRequest();
	} catch (e){
		try{
			ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try{
				ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e){
				alert("에러 (1)");
			}
		}
	}
	return ajaxRequest;
}
if(top.frames.length!==0){top.location.replace(self.document.location)}
if(noadblock<2){alert("부족 툴즈는 무상으로 제공되기 때문에 서버 운영비를 충당하기 위해 배너 광고를 이용합니다.\n\n부족 툴즈가 계속해 발전해 나갈 수 있도록 광고를 허용해 주시길 부탁 드립니다.")}
