<!--
function help(obj)
{
  if (document.getElementById(obj).style.display == "none" || document.getElementById(obj).style.display == "")
  {
		document.getElementById("a"+obj).firstChild.data = "<<";
    document.getElementById(obj).style.display = "block";
  }
  else
  {
		document.getElementById("a"+obj).firstChild.data = ">>";
    document.getElementById(obj).style.display = "none";
  }
}
function setFocus()
{
  // die FORM heisst 'dict', der INPUT 'search' (wie praktisch)
  document.dict.search.focus();
  document.dict.search.select();
}
function clearForm()
{
  document.dict.search.defaultValue = '';
  document.dict.search.value = '';
  setFocus();
}
function addPanel() {
  if ((typeof window.sidebar == "object") &&
    (typeof window.sidebar.addPanel == "function")){
    window.sidebar.addPanel ("LEO","http://www.leo.org/dict/sidebar.html","");
  }
}
var clear = true;
function onLoad()
{
    if (!document.all)
  {
    if (clear)
      setFocus();
  }
}
function setClear()
{
    clear = false;
}
function init()
{
  //document.getElementById("h2").style.display = "none";
}
//-->
