// JavaScript Document

  function hide(id) {
    obj = document.getElementById(id);
    document.write(obj.style.display);
    //obj.style.display = "none";
  }
  
  function show(id,udaje) {
    if (obj = document.getElementById("cena"+id)) {
      obj.innerHTML=udaje.split(":")[0]+",-";
    }
    if (obj = document.getElementById("pvaha"+id)) {
      tmp = udaje.split(":")[1];
      t_weight = 'minimum';
      if (tmp <= 3) tmp=tmp*1.2;
      else if (tmp <= 5) tmp=tmp*1.15;
        else if (tmp > 5) tmp=tmp*1.1;
      var weight = new Number(tmp);
      weight = weight.toFixed(1);
      if (weight > 1) t_weight = weight.toString()+"kg";
      obj.innerHTML=t_weight;
    }

    if (obj = document.getElementById("vaha"+id)) {
        obj.innerHTML=udaje.split(":")[1];
      }
    
    if (obj = document.getElementById("dost"+id)) {
      obj.innerHTML=udaje.split(":")[4];
    }
    
    if (obj = document.getElementById("vice"+id)) {
      href = "<a href=\"index.php?main_page=product_info&products_id="+udaje.split(":")[2]+"\"><img src=\"images/thumbnail/lupa.gif\" alt=\"Detail zboží\" title=\"Detail zboží\" border=\"0\"></a>";
      //alert(href);
      obj.innerHTML=href;
    }
    
    if (obj = document.getElementById("add"+id)) {
      href = "<a href=\"index.php?main_page=index&action=buy_now&products_id="+udaje.split(":")[2]+"\"><img src=\"images/thumbnail/buy_now.gif\" alt=\"Kup teď!\" title=\"Kup teď!\" border=\"0\"></a>";
      obj.innerHTML=href;
    }
    
  function wo(){
    window.open("","_blank","width=100,height=100");
  }
    
  }  


