function SetIcons(string, imgpath)
{
  var nLength = 0;
  var nIcon;
  var strPath;

  nLength = string.length;
  if(nLength == 0) return;
  
  for(i=0;i<nLength;i++)
  {
    nIcon = string.charAt(i);

    if(nIcon == '1') strPath = '<a href="shop_content.php/coID/91">'; 
    else if(nIcon == '2') strPath = '<a href="shop_content.php/coID/91">'; 
    else if(nIcon == '3') strPath = '<a href="shop_content.php/coID/92">'; 
    else if(nIcon == '4') strPath = '<a href="shop_content.php/coID/93">'; 
        
    strPath += '<img src="';
    strPath += imgpath;
    
    if(nIcon == '1') strPath += 'sehrgut.gif'; 
    else if(nIcon == '2') strPath += 'gut.gif'; 
    else if(nIcon == '3') strPath += 'demeter.gif'; 
    else if(nIcon == '4') strPath += 'bio.gif'; 

    strPath += '" valign="bottom"></a>';

    document.write(strPath);
  }
}
