function bm(id,object){
	if(object.checked === true){
		var type = 'add';
	}else if(object.checked === false){var type = 'remove';}
	$.post('/proccessor.php',{act: 'bookmark',type: type,id:id});
}
function bt(id,object){
	loadingMsg = 'Bookmarking topic...'
	if(object.checked === true){
		var type = 'add';
	}else if(object.checked === false){var type = 'remove';}
	$.post('/proccessors/forum.php',{act: 'bookmarkT',type: type,id:id});
}
function bml(id,object){
	if(object.innerHTML == 'Bookmark this profile'){
		var type = 'add';
	}else if(object.innerHTML == 'Remove bookmark'){
		var type = 'remove';
	}
	
	$.post('/proccessor.php',{act: 'bookmark',type: type,id:id},function(data){
				if(object.innerHTML == 'Bookmark this profile'){
					object.innerHTML = 'Remove bookmark'
				}else if(object.innerHTML == 'Remove bookmark'){
					object.innerHTML = 'Bookmark this profile'
	}});
}