function go0()
{
	box = document.forms[0].navi0;
	destination = box.options[box.selectedIndex].value;
	if (destination) top.location.href = destination;
}

function go1()
{
	box = document.forms[1].navi1;
	destination = box.options[box.selectedIndex].value;
	if (destination) top.location.href = destination;
}

function go2()
{
	box = document.forms[2].navi2;
	destination = box.options[box.selectedIndex].value;
	if (destination) top.location.href = destination;
}

function resize0(ddrows)
{
	box = document.forms[0].navi0;
	box.size = ddrows;
}

function resize1(ddrows)
{
	box = document.forms[1].navi1;
	box.size = ddrows;
}

function resize2(ddrows)
{
	box = document.forms[2].navi2;
	box.size = ddrows;
}

function HideDivArea(areas_show, areas_hide)
{
  for (var i = 0; i < areas_show.length; i++){
    ge = document.getElementById(areas_show[i]);
    ge.style.display = "block";
  }
  for (var i = 0; i < areas_hide.length; i++){
    document.getElementById(areas_hide[i]).style.display = 'none';
  }
}

