// JavaScript Document
function buycontent(a,b,c,d){ 
if(a==1)
{
jConfirm('<img src="'+d+'" width="40" height="40" alt="Content Name"/><br/>&iquest;Quieres descargar este contenido?', 'Airefon', function(r) {
if(r==true)
	{
	$.ajax({
		type: 'POST',
		url: "index.php",
		data: "accionws=buy&contentId="+b+"&serviceId="+c,
		success: function(data) {
		if(data.indexOf("--ok")!=-1)
		{
			alert_del();
			$('#usercreditsbox').load('index.php?accionws=get_credits');
		}
		else
			alert_err_del(); 
			}
	});
	}
});
}
else
	alert_incompatible();
}
