function network_fb(id){	
	
	$.ajax({
		type: 'POST',
		url: 'includes/networking_fb.php',
		data: 'id=' + id,
		dataType: 'json',
		success: function(data, textStatus) {
			if (data.redirect) {
				// data.redirect contains the string URL to redirect to
				window.location.href = data.redirect;
			}
			else {

			}
		}
	});
}

function network_twitter(id){	
	
	$.ajax({
		type: 'POST',
		url: 'includes/networking_twitter.php',
		data: 'id=' + id,
		dataType: 'json',
		success: function(data, textStatus) {
			if (data.redirect) {
				// data.redirect contains the string URL to redirect to
				window.location.href = data.redirect;
			}
			else {

			}
		}
	});
}

