  function basket_add (id)
  {
    var count = 0;
    var velikost = 0;
    //count = 1 * eval ("count" + id + ".value");
    count = document.getElementById('count'+id).value;
    velikost = document.getElementById('velikost'+id).value;
    basketstrana = document.getElementById('basketStrana').value;
    if (count)
      document.location = "e-shop/basket/add/" + id + "/" + count + "/" + velikost + "/" + basketstrana;   
     
      
  }