function Set_vertical_Icons(string, imgpath)
{
  var nLength = 0;
  var nIcon;
  var strPath;

  nLength = string.length;
  if(nLength == 0) return;
  
  for(i=0;i<nLength;i++)
  {
    strPath = '<img src="';
    strPath += imgpath;

    nIcon = string.charAt(i);
    
    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="top" height="15"><br>';

    document.write(strPath);
  }
}
