/*************************************************************************
* Dieser Copyright-Eintrag darf nicht verändert oder entfernt werden!
* (c) 2001-2003 by CATMEDIA eCommerce - http://www.catmedia.info/
* TommyShop -- die easy-to-use Shop-Software -- http://www.tommyshop.de/
* TommyShop 1.3/4022/Kirchmann, Roland/40880.77
*************************************************************************/

var articles = new Array(
new Array('Kein Artikel','','','Zur Zeit sind keine Artikel bestellbar. \nDas Shopsystem wird neu aufgebaut.','0.00','article_g001_000.html',''),
  new Array('','','','',''));

function search(str)
{
  var i, found = new Array();

  for (i in articles)
    if ((articles[i][0] != "") && (articles[i].join(WK_FIELD).toLowerCase().indexOf(str.toLowerCase()) != -1))
      found[found.length] = articles[i];

  if (found.length > 0) {
    document.write('<p>Die Suche nach <strong>&quot;'+str+'&quot;</strong> ergab <strong>'+found.length+'</strong> Treffer:</p>\n');
    document.write('<ul>\n');
    for (i in found) {
      document.write('<li>');
      document.write('<strong>'+found[i][0].link(found[i][5])+'</strong>');
      document.write(' - Art.Nr. '+found[i][1]);
      document.write(' - '+valuta(found[i][4])+'<br>');
      if (found[i][2] != '') document.write(found[i][2]+'<br>');
      else document.write('<p>'+found[i][3]+'</p>\n');
      document.write('</li>\n');
    }
    document.write('</ul>\n');
  }
  else
    document.write('<p>Die Suche nach <strong>&quot;'+str+'&quot;</strong> ergab keine Treffer.</p>\n');
}

