	
	// Bookmark
	// For IE and Firefox

	function Bookmark(BookmarkType)
	{
	switch(BookmarkType)
		{
		case 'delicious':
			url='http://del.icio.us/post?url=' + encodeURIComponent(document.location) +'&title='+encodeURIComponent(document.title)	
			document.location.replace(url);
			break;
		case 'digg':
			url='http://digg.com/submit?url=' + encodeURIComponent(document.location) +'&title='+encodeURIComponent(document.title)	
			document.location.replace(url);
			break;
		case 'furl':
			url='http://www.furl.net/storeIt.jsp?u=' + encodeURIComponent(document.location) +'&t='+encodeURIComponent(document.title)	
			document.location.replace(url);
			break;
		case 'newsvine':
			url='http://www.newsvine.com/_wine/save?popoff=0&u=' + encodeURIComponent(document.location)	
			document.location.replace(url);
			break;
		case 'nowpublic':
			url='http://view.nowpublic.com/?src' + encodeURIComponent(document.location) +'&title='+encodeURIComponent(document.title)	
			document.location.replace(url);
			break;
		case 'reddit':
			url='http://reddit.com/submit?url=' + encodeURIComponent(document.location) +'&title='+encodeURIComponent(document.title)	
			document.location.replace(url);
			break;
		case 'facebook':
			url='http://www.facebook.com/sharer.php?u=' + encodeURIComponent(document.location)
			document.location.replace(url);
			break;
		case 'stumbleupon':
			url='http://www.stumbleupon.com/submit?url=' + encodeURIComponent(document.location) +'&title='+encodeURIComponent(document.title)	
			document.location.replace(url);
			break;
		default:
			if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4))
				{window.external.AddFavorite(document.location,document.title);}
			else if (navigator.appName == "Netscape")
				{window.sidebar.addPanel(document.title,document.location,"");}
			else {alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");}
			break;
		}
	}