function add_to_shoppinglist(pid)
{
	//alert(pid);
	x_add_product(pid,'shoping_list',get_response);
}
function add_to_wishlist(pid)
{
	//alert(pid);
	x_add_product(pid,'wish_list',get_response);
}
/*------------------------------ Ajax Response ---------------------------------------*/
function get_response(res)
{
	alert(res);
}
