
function social_ajax_post(type, session, parent_post_id){
	if (type=='post'){
		var arg = {'method':'wall_post', 'session':session, 'community_id':$('#community_id').val(), 'title':$('#wall_post_title').val(), 'content':$('#wall_post_content').val()};
	}
	if (type=='picture'){
		var arg = {'method':'wall_picture', 'session':session, 'community_id':$('#community_id').val(), 'title':$('#wall_picture_title').val(), 'content':$('#wall_picture_content').val()};
	}
	if (type=='video'){
		var arg = {'method':'wall_video', 'session':session, 'community_id':$('#community_id').val(), 'title':$('#wall_video_title').val(), 'content':$('#wall_video_content').val()};
	}
	if (type=='comment'){
		var arg = {'method':'wall_comment', 'session':session, 'community_id':$('#community_id').val(), 'parent_post_id':parent_post_id, 'title':$('#wall_comment_title_'+parent_post_id).val(), 'content':$('#wall_comment_content_'+parent_post_id).val()};
	}
	
	//document.getElementById('wall_post_submit').attr('disabled', 'disabled');
	//$("#wall_post_submit_div").html("Mentés...");

	var resp = $.post("/ajax/social.php", { data: arg }, function(data){},'json')
	.success(function() {})
	.error(function() {})
	.complete(function() {
		location.reload();
	});
}

function soc_open_wall(id){
	//$("div#wall_"+id).slideToggle();
	if (id=='post'){
		document.getElementById('wall_post').style.display="block";
		document.getElementById('wall_picture').style.display="none";
		document.getElementById('wall_video').style.display="none";
	} else if (id=='picture'){
		document.getElementById('wall_post').style.display="none";
		document.getElementById('wall_picture').style.display="block";
		document.getElementById('wall_video').style.display="none";
	} else if (id=='video'){
		document.getElementById('wall_post').style.display="none";
		document.getElementById('wall_picture').style.display="none";
		document.getElementById('wall_video').style.display="block";
	} else {
		document.getElementById(id).style.display="block";
	}
}

function soc_open_friend(id){
	//$("div#wall_"+id).slideToggle();
	if (id=='friend_confirmed'){
		document.getElementById('friend_confirmed').style.display="block";
		document.getElementById('friend_unconfirmed').style.display="none";
		document.getElementById('friend_request').style.display="none";
		document.getElementById('friend_confirmed_head').setAttribute("class","ismerosok_bt_i_box_aktiv");
		document.getElementById('friend_unconfirmed_head').setAttribute("class","ismerosok_bt_i_box");
		document.getElementById('friend_request_head').setAttribute("class","ismerosok_bt_i_box");
	}
	if (id=='friend_unconfirmed'){
		document.getElementById('friend_confirmed').style.display="none";
		document.getElementById('friend_unconfirmed').style.display="block";
		document.getElementById('friend_request').style.display="none";
		document.getElementById('friend_confirmed_head').setAttribute("class","ismerosok_bt_i_box");
		document.getElementById('friend_unconfirmed_head').setAttribute("class","ismerosok_bt_i_box_aktiv");
		document.getElementById('friend_request_head').setAttribute("class","ismerosok_bt_i_box");
	}
	if (id=='friend_request'){
		document.getElementById('friend_confirmed').style.display="none";
		document.getElementById('friend_unconfirmed').style.display="none";
		document.getElementById('friend_request').style.display="block";
		document.getElementById('friend_confirmed_head').setAttribute("class","ismerosok_bt_i_box");
		document.getElementById('friend_unconfirmed_head').setAttribute("class","ismerosok_bt_i_box");
		document.getElementById('friend_request_head').setAttribute("class","ismerosok_bt_i_box_aktiv");
	}
}

function report(){
    $('#user_report').dialog({modal: true, title: 'Jelentés'});
}

function send_report(){
    var url = window.location.href;
}
