
var search_id="check1";
function SearchItem(id){
	var prev_obj = document.getElementById("item_" + search_id);
	var obj = document.getElementById("item_" + id);
	if(prev_obj){
		prev_obj.style.display = "none";
	}
	if(obj){
		obj.style.display = "block";
		search_id = id;
	}
}
var current_id="default";
function ShowItem(id){
	var prev_obj = document.getElementById("item_" + current_id);
	var obj = document.getElementById("item_" + id);
	if(prev_obj){
		prev_obj.style.display = "none";
	}
	document.getElementById("tab_" + current_id).className = "tab_unselect";
	if(obj){
		obj.style.display = "block";
		current_id = id;
	}
	document.getElementById("tab_" + id).className = "tab_select";
}
var current_index_id="index";
function ShowItemIndex(id){
	var prev_obj = document.getElementById("item_index_" + current_index_id);
	var obj = document.getElementById("item_index_" + id);
	if(prev_obj){
		prev_obj.style.display = "none";
	}
	document.getElementById("tab_index_" + current_index_id).className = "tab_index_unselect";
	if(obj){
		obj.style.display = "block";
		current_index_id = id;
	}
	document.getElementById("tab_index_" + id).className = "tab_index_select";
}



var current_tour_id="tour";
function ShowItemTour(id){
	var prev_obj = document.getElementById("item_tour_" + current_tour_id);
	var obj = document.getElementById("item_tour_" + id);
	if(prev_obj){
		prev_obj.style.display = "none";
	}
	//document.getElementById("tab_tour_" + current_tour_id).className = "tab_tour_unselect";
	if(obj){
		obj.style.display = "block";
		current_tour_id = id;
	}
	document.getElementById("tab_tour_" + id).className = "tab_tour_select";
}


var current_tab_id="tabtour";
function ShowItemTab(id){
	var prev_obj = document.getElementById("item_tab_" + current_tab_id);
	var obj = document.getElementById("item_tab_" + id);
		if(prev_obj){
			prev_obj.style.display = "none";
		}
		document.getElementById("tab_tab_" + current_tab_id).className = "tab_tab_unselect";
		if(obj){
			obj.style.display = "block";
			current_tab_id = id;
		}
		document.getElementById("tab_tab_" + id).className = "tab_tab_select";
}
function ShowTab(name)
{
    var tab=document.getElementsByName(name);
    for(var i=0;i<tab.length;i++)
    {
        tab[i].style.display="inline";
    }
}
function wopen(url,name, w, h)
{
 var win = window.open(url,name,"width="+w,"height="+h,"location=no, menubar=no,status=no,toolbar=no,scrollbars=no,resizable=no");
 win.resizeTo(w, h);
 win.focus();
}
