/* PullDown Menü */

self.focus();

function MenuClear()
 {for (var i=1;i<=(document.FrmMnu.Auswahl.length-1);i++)
	document.FrmMnu.Auswahl.options[i] = null;
  document.FrmMnu.Auswahl.length = 1;
  document.FrmMnu.Auswahl.options[0].Selected == true
 }

function MenuAdd(NeuerEintrag,URL)
 {NeuerEintrag = new Option(NeuerEintrag);
  document.FrmMnu.Auswahl.options[document.FrmMnu.Auswahl.length] = NeuerEintrag;
  document.FrmMnu.Auswahl.options[document.FrmMnu.Auswahl.length-1].value = URL; 
}

function MenuBuild()
 {
/*
  MenuClear();
  MenuAdd(" Geschäftsbedingungen","index.html");
  MenuAdd(" Impressum","index.html");
  MenuAdd("--- Produkte ------------------ ","0");
  MenuAdd(" Nadeln Silber","index.html");
  MenuAdd(" Nadeln Kupfer","index.html");
  MenuAdd(" Nadeln Plastikgriff","index.html");
  MenuAdd(" Moxa rauchlos","index.html");
  MenuAdd(" Moxa Rollen","index.html");
  MenuAdd(" Moxa Hütchen","index.html");
  MenuAdd(" Schröpfgläser","index.html");
  MenuAdd(" Körpermodelle","index.html");
  MenuAdd(" Magnet-Nadeln","index.html");
  MenuAdd(" Ritzer","index.html");
  MenuAdd(" Dreikantnadeln","index.html");
  MenuAdd(" Hämmerchen","index.html");
*/
 }

function MenuGo()
 {
  if (document.FrmSel.select.value != "0")
   {top.window.location.href = urlbezug+document.FrmSel.select.value;}
  else
   {MenuBuild();}
  return false;
 }

function MenuSelect()
 {for (var i=0;i<=(document.FrmMnu.Auswahl.length-1);i++)
   if(document.FrmMnu.Auswahl.options[i].selected) document.FrmSel.select.value = document.FrmMnu.Auswahl.options[i].value;
  MenuGo();
 }
