
function updatePodcastTitle(id,text) {
	var title = $('#'+id);
	title.html(text);
	return false;
}

