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";
}

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();
}
function showSlide_print(id,name){
	var sParams = "scrollbars=yes,toolbar=no,menubar=no,resizable=yes,location=no,height=650,width=820,top=20,left=20";
	var wname = "ShowSlide_print";
	var dest = "tour-print.php";
	window.open(dest,wname,sParams);
}
function showSlide_cruise_print(id,name){
	var sParams = "scrollbars=yes,toolbar=no,menubar=no,resizable=yes,location=no,height=650,width=820,top=20,left=20";
	var wname = "ShowSlide_print";
	var dest = "cruise-print.php";
	window.open(dest,wname,sParams);
}
function showSlide_campare(id,name){
	var sParams = "scrollbars=yes,toolbar=no,menubar=no,resizable=yes,location=no,height=800,width=1250,top=20,left=20";
	var wname = "ShowSlide_print";
	var dest = "cruise-compare.php?"+id+"="+name;
	window.open(dest,wname,sParams);
}
function showSlide_route(id,name){
	var sParams = "scrollbars=yes,toolbar=no,menubar=no,resizable=yes,location=no,height=650,width=820,top=20,left=20";
	var wname = "ShowSlide_print";
	var dest = "cruise-route.php";
	window.open(dest,wname,sParams);
}
function showhide(id){
	tmp= document.getElementById(id);
if(tmp.style.display== "none")
	tmp.style.display= "block";
else if(tmp.style.display="block")
	tmp.style.display= "none";
}
