function add_bookmark(el_id)
{
	var link = "/bookmarks/add/"+el_id;
	
	document.getElementById('add_bookmark').onclick = null;
	$('bookmark_res').style.display = 'inline';
/*
	new Ajax(url, {
		method: 'get',
		update: $('bookmark_res')
	}).request();
*/

	var req = new Request({
		url: link,
		onSuccess: function(txt){
			$('bookmark_res').set('html', txt);
		}
	});
	req.send();
}
