// JavaScript Document
function putPost(url,title,tag,jump,act){
	if(!document.miniplanetForm){
		var formHTML="<form name=\"miniplanetForm\" action=\"http://mi.nipla.net/post\" method=\"post\">";
		formHTML+="<input name=\"url\" type=\"hidden\" value=\""+url+"\" />";
		formHTML+="<input name=\"title\" type=\"hidden\" value=\""+title+"\" />";
		formHTML+="<input name=\"tag\" type=\"hidden\" value=\""+tag+"\" />";
		formHTML+="<input name=\"jump\" type=\"hidden\" value=\""+jump+"\" />";
		formHTML+="<input name=\"act\" type=\"hidden\" value=\""+act+"\" />";
		formHTML+="</form>";
		document.body.innerHTML=formHTML;
	}else{
		document.miniplanetForm.url.value = url;
		document.miniplanetForm.title.value = title;
		document.miniplanetForm.tag.value = tag;
		document.miniplanetForm.jump.value = jump;
		document.miniplanetForm.act.value = act;
	}
	document.miniplanetForm.submit();
}
function crumb(obj,url){
	crumbID.innerHTML = obj.value;
	obj.style.width = crumbID.offsetWidth + 40 + 'px';
	enter_herf(obj,url)
}
function enter_herf(obj,url){
	if(window.event.keyCode == 13){
		herf(obj,url);
	}
}
function herf(obj,url){
	location.href = url + obj.value;
}
function changeCrumb(){
	crumbID.innerHTML = crumbInput.value;
	crumbInput.style.width = crumbID.offsetWidth + 40 + 'px';
}