function user_interest_use (id) {
	$.get("/users/cmd/interest_use/", { toid: id, ajax: '2' }, function(data){});
	return false;
}

function user_interest_get (id) {
	$.get("/users/cmd/interest_get/", { toid: id, ajax: '2' }, function(data){
		$('#user_interest').html(data);
	});
	return false;
}

/* online */
function see_onlinefulluser (cnt2) {
	$.get("/users/cmd/online_full_user/", { cnt: cnt2, ajax: '2' }, function(data){
		$('#online_full_user').html(data);
	});
	return false;
}

/*отзывы*/
function calls (cnt2, pl, p, cura) {
	$.get("/users/cmd/calls/", { cnt: cnt2, place: pl, page: p , cur: cura , ajax: '2' }, function(data){
	$('#calls').html(data);
	});
	return false;
}

/*люди*/
function people (cnt2, pl) {
	$.get("/users/cmd/people/", { cnt: cnt2, place: pl ,ajax: '2' }, function(data){
	$('#people').html(data);
	});
	return false;
}

function users_please_registr(){
	$.get("/users/cmd/users_please_registr/", { ajax: '2' }, function(data){
		$('#hidden-messages').html(data);
	});
	return false;
}


/* Load party list in homepage */

function LoadPartyList(cnt2){
	$('#date_pk>a').addClass('ajaxlink');
	$('#bl_v').removeClass('ajaxlink');
			
	$.get("/vpiski/cmd/party/load_list/", { cnt: cnt2, ajax: '2' }, function(data){
		$('#reloaded').html(data);
	});
	return false;
}

/* new users in homepage */
function see_newuser (cnt2) {
	$.get("/users/cmd/see_newuser/", { cnt: cnt2, ajax: '2' }, function(data){
		$('#users_new_main').html(data);
	});
	return false;
}
