function addToWishlist(id_product) {
	var myRequest = new Request({method: 'get', url: 'index.php'});
	myRequest.send('action=ajax&ajax_name=addToWishlist&id_product='+id_product);
	reloadWishlist()
}

function removeFromWishlist(id_product) {
	var myRequest = new Request({method: 'get', url: 'index.php'});
	myRequest.send('action=ajax&ajax_name=removeFromWishlist&id_product='+id_product);
	reloadWishlist()
}

function reloadWishlist() {
	$('whislist_holder').load('/index.php?action=ajax&ajax_name=reloadWishlist');
}
