function add2cart(id, qty)
{
  var theform = document.forms['cart_form'];
  theform.uid.value = id;
  theform.qty.value = qty;
  theform.submit();
}

function add2wish(id)
{
  var theform = document.forms['wish_form'];
  theform.uid.value = id;
  theform.submit();
}
