function addToShoppingcart(webshopId, productId)
{
	if (Object.isUndefined(webshopId) || Object.isUndefined(productId)) {
		return false;
	}

	var shoppingcartURL = PbLib.getNewURI('k/webshop/cart/' + webshopId + '/' + productId + '/add');
	PbLib.createDialog(shoppingcartURL, 600, 200);

	return true;
}