var profilo_current = "edit";
var profilo_reload = false;
var interessi_current = "edit";
var interessi_reload = false;
var topten_current = "edit";
var topten_reload = false;

function profilo(id_utente, what, mode, destination, view) {
	if (what == "") rif = "profilo";
	else rif = what.substring(1);
	if (mode != 'view') { 
		$("." + rif + ".edit.sopra_box #fine").removeClass("nascosto");
		$("." + rif + ".edit.sopra_box #modifica").addClass("nascosto");
	}
	else {
		$("." + rif + ".edit.sopra_box #fine").addClass("nascosto");
		$("." + rif + ".edit.sopra_box #modifica").removeClass("nascosto");
	}
	$.ajax({
		type: "POST", 
		url: "/include/php/jquery/profilo" + what + "_" + mode + ".php" + (view ? "?view=1" : ""),
		data: "id_utente=" + id_utente,
		cache: false,
		success: function(risposta) {
			$(destination).html(risposta);
			// $("." + rif + ".edit.sopra_box img").attr("id", (mode == 'view' ? "modifica" : "fine"));
			if (rif == "profilo") {
				profilo_current = (profilo_current == "edit" ? "view" : "edit");
				profilo_reload = !profilo_reload;
			}
			else if(rif == "interessi") {
				interessi_current = (interessi_current == "edit" ? "view" : "edit");
				interessi_reload = !interessi_reload;
			}
			else if(rif == "topten") {
				topten_current = (topten_current == "edit" ? "view" : "edit");
				topten_reload = !topten_reload;
			}
		}
	});
}
