function addToCart(productId, quantity) {   
	ShoppingCart.addProduct(productId, quantity,callback);
}
function deleteFromCart(cartId){
	ShoppingCart.deleteProduct(cartId);
	var reload = window.location = "shoppingcart.do";
}

function callback(msg) {
	//DWRUtil.setValue('result', msg);
	alert(msg);
}
function clearResult(){
	//DWRUtil.setValue('result',null);
}
