	function addBookmark() {
		var url = window.location.href;
		var title = document.title;
		var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
		if (window.sidebar) { // Mozilla Firefox Bookmark
			window.sidebar.addPanel(title, url, "");
		}
		else if (window.external && !is_chrome) { // IE Favorite
			window.external.AddFavorite(url, title); 
		}
		else if (window.opera && window.print) { // Opera Hotlist
			var elem = document.createElement('a');
			elem.setAttribute('href',url);
			elem.setAttribute('title',title);
			elem.setAttribute('rel','sidebar');
			elem.click();
		}
		else {
			alert('To add this page to your bookmarks, press CONTROL-D or COMMAND-D.');
		}
	}
	
	function printPage(){
		window.print();	
	}
	
	function emailPage(){
		window.location.href = '/EmailPage/?EmailPage=' + encodeURIComponent(window.location.href);
	}
	
	function hideShareIcons(){
		$('ShareIcons').style.display = 'none';
	}
	function showShareIcons(){
		$('ShareIcons').style.display = 'block';
	}
