function menuShow(menu_name, sw)
{
	var menu_style = document.getElementById(menu_name).style;

	if(sw == 0)
		menu_style.display = 'none';
	else
		menu_style.display = 'block';
}

function menuGo(where)
{
	location.href = 'index.php?x=' + where;
}
