// -------------------------------------------------------------
// File     : shop.js
// Author   : F. Nembrini
// Company  : (C) Quarcom Teleinformatics
// Date     : December 30, 2008
// Modified : 
// Aim      : Manage shop functions
// -------------------------------------------------------------

function updateQty(item)
{
 itemId = item.name;
 newQty = item.options[item.selectedIndex].text;
 document.location.href = "index.php?m=3&s=1&c=1&action=update_item&id="+itemId+"&qty="+newQty;
}

function delBook(id)
{
  if(confirm("Eliminare questo libro dal carrello?"))
  {
    document.location.href = "index.php?m=3&s=1&c=1&action=remove_item&id=" + id + "";
  }
}

function updateQty2(item)
{
 itemId = item.name;
 newQty = item.options[item.selectedIndex].text;
 // document.location.href = "index.php?m=3&s=2&c=1&action=update_item&id="+itemId+"&qty="+newQty;
 document.location.href = "index.php?m=3&s=6&c=3&action=update_item&id="+itemId+"&qty="+newQty;
}

function delBook2(id)
{
  if(confirm("Eliminare questo libro dal carrello?"))
  {
    //document.location.href = "index.php?m=3&s=2&c=1&action=remove_item&id=" + id + "";
    document.location.href = "index.php?m=3&s=6&c=3&action=remove_item&id=" + id + "";
  }
}
