function dispatchPartner1(action, category, orderId, productId, title, price, quantity, customerNumber)
{

}

function playerPartner2(productId, title, unitPrice, customerId, orderId, subtotal, category, quantity, shippingPrice)
{
	//Anzahl Standard auf 1, shippingPrice Standard auf 0
	quantity=(quantity==null) ? '1' : quantity;
	shippingPrice=(shippingPrice==null) ? '0' : shippingPrice;
	cmCreateShopAction9Tag(productId, title, quantity, unitPrice, customerId, orderId, subtotal, category);
	cmDisplayShop9s();
	cmCreateOrderTag(orderId, subtotal, shippingPrice, customerId);
}

function productViewPartner2(productId, title, category)
{
	cmCreateProductviewTag(productId, title, category);
}

function shoppingCartPartner2(productId, title, unitPrice, category, quantity)
{
	//Anzahl Standard auf 1
	quantity=(quantity==null) ? '1' : quantity;
	cmCreateShopAction5Tag(productId, title, quantity, unitPrice, category);
	cmDisplayShop5s();
}
