  function modifyItem(item) { 
    
    window.location="index.php?menuitem=11?productid=" + item; 
  } 
 
  function removeItem(item) { 
    var answer = confirm ('Weet je zeker dat je dit product wilt verwijderen?') 
    if (answer) 
    window.location="delete.php?item=" + item; 
  } 

  function removeCart() { 
    var answer = confirm ('Weet je zeker dat je de winkelwagen wilt leeghalen?') 
    if (answer) 
    window.location="delete_cart.php"; 
  } 
