/*************************************************************
* Bookmark: Bind click event for adding a bookmark
*************************************************************/
$(document).ready(function () {
    $("li.tools_add a").bind("click", Emap.addBookmark);
	
	$("a.toolsSendToFriend").bind("click", function () {
		//Emap.popupWindow($(this).href());
		
		document.location = $(this).href();
		return false;
	});
});