// JavaScript Document
function togglePart(n) {
  var list=n.parentNode;
  if (!document.all) this.blur();
  if (!list.toggle) list.toggle='off';
  with (list) {
    style.height=((toggle=='off')?'auto':'1.4em');
    style.overflow=((toggle=='off')?'visible':'hidden');
    toggle=((toggle=='off')?'on':'off');
  }
  return false;
}

function setToggle() {
  document.writeln('<style type="text/css">');
  document.writeln('.toggle {height:1.4em; overflow:hidden; cursor:pointer}');
  document.writeln('</style>');
}

