function savebookmark(id,model)
{
	$('#bookmark-it').show();
	$('#bookmessage').html("One moment please");
	jQuery.post("/bookmarks/add/",{nid:id,model:model},function(data){ $('#bookmessage').html(data);$('#bookmark-it').slideUp(1900)});
}

function deletebookmark(id)
{
	if(confirm("Delete bookmark?")==true)
	{
	jQuery.post("/bookmarks/del/",{bid:id},function(data){$('#book-content').load("/bookmarks/list/ #bookmark-table");});
	}
}