// JavaScript Document
function show_menu(id)
{
	hidden_menu();
	var el = document.getElementById(id);
	curmenu = el;
	el.style.display = "block";
}

function hidden_menu()
{
	var el = document.getElementById('rafting');
	el.style.display = "none";
	el = document.getElementById('guide');
	el.style.display = "none";
	el = document.getElementById('patrol');
	el.style.display = "none";
}

function reEmbed(str)
{
	document.write(str);
}

function show_big_img_path(imgpath)
{
	var url = "/files/popupimg_path.php?img_path="+imgpath;
	var win = window.open(url,"photo","width=200,height=200,scrollbars=yes");
	win.focus();
}
