document.writeln("<script type=\"text\/javascript\">");
document.writeln("function fetch_object(idname)");
document.writeln("{");
document.writeln(" var my_obj = document.getElementById(idname);");
document.writeln(" return my_obj;");
document.writeln("}");
document.writeln("function toggle_nav(obj)");
document.writeln("{");
document.writeln(" for (i = 1; i<= 6; i++ )");
document.writeln(" {");
document.writeln("  var sub_nav = fetch_object(\"lower_nav\" + i);");
document.writeln("  var sub_nav_index = fetch_object(\"lower_nav0\");");
document.writeln("  sub_nav_index.style.display = \"none\";");
document.writeln("  if (obj == i)");
document.writeln("  {");
document.writeln("   sub_nav.style.display = \"block\";");
document.writeln("  }");
document.writeln("  else");
document.writeln("  {");
document.writeln("   sub_nav.style.display = \"none\";");
document.writeln("  }");
document.writeln(" }");
document.writeln("}");
document.writeln("<\/script>")
