function ergebnisZeigen( selected )
{
  if( selected.length )
  {
    /*
     * Auswahlstrecke wurde beendet
     */
    // Visualisierung der Auswahlsrecke
    var sel = '';
    var val = '';
    var txt = '';
    for( var i = 0; i < selected.length; i++ )
    {
      sel += ( i>0 ? '' : '') + selected[i].id;
      val += ( i>0 ? '' : '') + selected[i].value;
      txt += ( i>0 ? '' : '') + selected[i].text;
    }
       	num1 = val.substring(2, 5);
	num2 = val.substring(5, 8);
	num3 = val.substring(8, 9);
	appl_num = (num1 + num3 + num2);
	window.location.href = ("http://shop.strato.de/epages/61360750.sf/de_DE/secuPmf8DOZi2w/?ObjectPath=/Shops/61360750/Products/" + appl_num);
  }
  else
  {
    /*
     * Auswahlstrecke wurde noch nicht beendet
     */

    // Hinweis zur Auswahl in der nächsten Auswahlliste
    var output = '<p>W&auml;hlen Sie eine Option aus der n&auml;chste Auswahlliste.<'+'/p>';
  }
  var ergebnisObj = document.getElementById( 'ergebnis' ).innerHTML = output;
};
window.onload = function()
{
  var vk = new LinkedSelection( [ 'hersteller', 'type', 'sprache' ], ergebnisZeigen, handyAuswahl );
 }

