function more(obj){
	var x = obj.parentNode;
	//document.getElementById(x.parentNode.id).style.display ="none";
	var str_id = x.parentNode.id;
	//alert(str_id.slice(0,str_id.length-1));
	var num = str_id.slice(5,str_id.length);
	num = Number(num) + 1;
	//alert(str_id.slice(0,str_id.length-1) + num);
	document.getElementById(str_id.slice(0,str_id.length-1) + num).style.display ="none";
	document.getElementById(x.parentNode.id +"_hidden").style.display ="block";
}

function close_more(obj){
	var x = obj.parentNode.parentNode.parentNode.parentNode;
	//document.getElementById(x.parentNode.id).style.display ="none";
	var str_id = x.id.slice(0,(x.id.indexOf("_",0)));
	var num = str_id.slice(5,str_id.length);
	num = Number(num) + 1;
	//alert(str_id.slice(0,str_id.length-1) + num);	
	document.getElementById(str_id.slice(0,str_id.length-1) + num).style.display ="block";
	document.getElementById(x.id).style.display ="none";
}

function more_6(obj){
	var x = obj.parentNode;
	//document.getElementById(x.parentNode.id).style.display ="none";
	var str_id = x.parentNode.id;
	//alert(str_id.slice(0,str_id.length));
	var num = str_id.slice(6,str_id.length);
	num = Number(num);
	//alert(str_id.slice(0,str_id.length-1) + num);
	document.getElementById(str_id.slice(0,str_id.length-1) + num).style.display ="none";
	document.getElementById(x.parentNode.id +"_hidden").style.display ="block";
}

function close_more_6(obj){
	var x = obj.parentNode.parentNode.parentNode.parentNode;
	//document.getElementById(x.parentNode.id).style.display ="none";
	var str_id = x.id.slice(0,(x.id.indexOf("_",0)));
	var num = str_id.slice(6,str_id.length);
	num = Number(num);
	//alert(str_id.slice(0,str_id.length-1) + num);	
	document.getElementById(str_id.slice(0,str_id.length-1) + num).style.display ="block";
	document.getElementById(x.id).style.display ="none";
}

function result_more(id){
	//document.getElementById(id.split("_")[0]).style.display ="none";
	document.getElementById(id).style.display ="block";	
}
function result_more_close(id){
	//document.getElementById(id.split("_")[0]).style.display ="none";
	document.getElementById(id).style.display ="none";	
}