
  var start     = document.getElementById('productlist');
  var links     = start.getElementsByTagName('span');
  var headlines = start.getElementsByTagName('h4');
  var statlink  = 'http://shop.dilego.de/public/catalog_xmlxslproducts.aspx?art=viewproduct&suid=103&productid='
  for (var i = 0; i < links.length; i++)
  {
    links[i].onclick = function()
    {
      if (this.getAttributeNode('class'))
      {
        var hrf = statlink + this.getAttributeNode('class').nodeValue.match(/[0-9]{1,}/);
        document.location.href = hrf;
      }
    }
  }
  for (var i = 0; i < headlines.length; i++)
  {
    headlines[i].onclick = function()
    {
      if (this.getAttributeNode('class'))
      {
        var hrf = statlink + this.getAttributeNode('class').nodeValue.match(/[0-9]{1,}/);
        document.location.href = hrf;
      }
    }
  }
