//Á¬½ÓÌø×ª
function jumpSearchInfo(obj,keywords){
  obj.target="_self";
  obj.click();
}

var currentObj = null;
function showBlogTree(obj){
	var parentBox = obj.parentNode;
	var imgObj = obj.getElementsByTagName("img")[0];
	var box = parentBox.getElementsByTagName("div")[1];
		if(obj!=currentObj)hiddenBlogTree();
	if(imgObj.getAttribute("src").indexOf("_minus")!=-1){
		imgObj.setAttribute("src",imgObj.getAttribute("src").replace("_minus","_plus"));
		box.style.display="none";
	}else{
		imgObj.setAttribute("src",imgObj.getAttribute("src").replace("_plus","_minus"));
		box.style.display="block";
	}
	if(currentObj==null)currentObj=document.getElementById("currentDiv");
	currentObj = obj;
}
function hiddenBlogTree(){
	if(currentObj==null)currentObj=document.getElementById("currentDiv");
	var obj = currentObj;
	var parentBox = obj.parentNode;
	var imgObj = obj.getElementsByTagName("img")[0];
	var box = parentBox.getElementsByTagName("div")[1];
	if(imgObj.getAttribute("src").indexOf("_minus")!=-1){
		imgObj.setAttribute("src",imgObj.getAttribute("src").replace("_minus","_plus"));
		box.style.display="none";
	}
}

var currentInforBox = "inforBox01";
var currentInforTd = "infor01";
function showInfor(obj){
	var imgObj = obj.getElementsByTagName("img")[0];
	imgObj.setAttribute("src",imgObj.getAttribute("src").replace("a.gif","b.gif"));
	var boxId=obj.getAttribute("id").replace("infor","");
	document.getElementById("inforBox"+boxId).style.display="";
	if(currentInforBox!="inforBox"+boxId)document.getElementById(currentInforBox).style.display="none";
	if(currentInforTd!=obj.getAttribute("id")){
		var oldObj = document.getElementById(currentInforTd).getElementsByTagName("img")[0]
		oldObj.setAttribute("src",oldObj.getAttribute("src").replace("b.gif","a.gif"));
	}
	currentInforBox = "inforBox"+boxId;
	currentInforTd = obj.getAttribute("id");
}

function hiddenInfor(obj){
	var imgObj = obj.getElementsByTagName("img")[0];
	//imgObj.setAttribute("src",imgObj.getAttribute("src").replace("b.gif","a.gif"));
	var boxId=obj.getAttribute("id").replace("infor","");
}