﻿function RemoveProductFromCart(productName)
{
    alertDrawer('You have removed ' + productName + ' from the cart.');
	return true;
}

function AddProductToMyFavoritesFromCart(productName)
{
    alertDrawer('You have added ' + productName + ' to Favorites.');
	return true;
}

function AddAllProductsToMyFavoritesFromCart()
{
    alertDrawer('You have added all your cart items to Favorites.');
	return true;
}

function RemoveAllProductsFromCart()
{
    alertDrawer('You have emptied your cart.');
	return true;
}