var qjumpList = new Array();
qjumpList[qjumpList.length] = new qjumpEntry('','&nbsp;DIETS Produkte&nbsp;');
qjumpList[qjumpList.length] = new qjumpEntry('','');
qjumpList[qjumpList.length] = new qjumpEntry('./universal.htm','Universalreiniger');
qjumpList[qjumpList.length] = new qjumpEntry('./ge_fl.htm','Geruchs- und Fleckenbeseitiger');
qjumpList[qjumpList.length] = new qjumpEntry('./compu.htm','Computer-Clean');
qjumpList[qjumpList.length] = new qjumpEntry('./fe_mo.htm','Felgen- und Motorenreiniger');
qjumpList[qjumpList.length] = new qjumpEntry('./ams_fl.htm','Antimilbenspray');
qjumpList[qjumpList.length] = new qjumpEntry('./amwz_fl.htm','Antimilbenwaschzusatz');
function qjumpEntry(target,name,flag)
{
  this.target = target;
  this.name   = name;
  if (flag) this.flag = flag;
  else this.flag = '';
}

function quickjump()
{
  var which = document.forms[0].qjump;
  if (which.selectedIndex>0)
  {
    if (which.options[which.selectedIndex].value=="")
      which.selectedIndex = 0;
    else
    {
      setTimeout("document.forms[0].qjump.selectedIndex = 0",3000);
      if (qjumpList[which.selectedIndex].flag=='')
        top.location.href = which.options[which.selectedIndex].value;
      else
        if (qjumpList[which.selectedIndex].flag=='top')
          top.location.href = which.options[which.selectedIndex].value;
    }
  }
}

