function getBestAbo(id_abo_brand, id_product, id_div)
{
	$.ajax(	{  
		url: "index.php?do=AjaxGetBestDeal&id_product=" + escape(id_product) + "&id_abo_brand=" + id_abo_brand,
				context: document.body, 
				success: function(data, textStatus, XMLHttpRequest)
				{
					$("#" + id_div).html(data);
				}
			}
	);

}
