// JavaScript Document
function confirm_remove(amount)
{
  if(amount=="all")
  {
  	var r=confirm("Empty Basket?")
  }
  else
  {
	var r=confirm("Remove Item?") 
  }
  if (r==true)
  {
    return true;
	exit;
  }
  else
  {
    return false;
  }	
}