var qty_changed = 0;

function shop_change_qty () {
  qty_changed = 1;
}

function shop_forgot_add2cart () {
  if (qty_changed == 1) 
  {
    if (confirm("Articles not confirmed. Add to shopping cart?"))
	{
	  document.shop.submit();
	  return true;
    }
	else {return false;}
  }
  else {return false;}
}



