function addUserFavorite(userId, itemId, templateId) {
	$('#btnFavorite').hide('slow');
	$('#favoriteMessage').html('<span style="color: green; font-weight: bold;">Subscriere in curs...</span>');
	$('#favoriteMessage').css('display', 'block');
	
	$.ajax({
	  type: "POST",
	  url: baseURL + "/utilizator/add_favorite",
	  data: "userId=" + userId + "&itemId=" + itemId + "&templateId=" + templateId,
	  success: function(msg){
	    if(msg == 'OK') {
			$('#favoriteMessage').html('<span style="color: green; font-weight: bold;">Articolul se afla in lista ta de articole favorite</span>');
		} else {
			$('#favoriteMessage').hide('slow');
			$('#btnFavorite').show('fast');
		}
	  }
	});
}

function url_title(string) {
	$.ajax({
		type: "POST",
		url: baseURL + "/tools/url_title",
		data: "keyword=" + string.replace('&', ''),
		async: false,
		success: function(msg){
			urlTitle = msg;
		}
	});
	return urlTitle;
}
