var CLAIM = CLAIM || {
	
	/**
	* Bookmarks the current page
	*/
	bookmark:function() {
		var title = document.title;  
		var url = window.location.href; 

		if (window.sidebar) { // Mozilla Firefox Bookmark
			window.sidebar.addPanel(title, url,"");
		} else if( window.external ) { // IE Favorite
			window.external.AddFavorite( url, title);
		} else {
			alert('Helaas is het niet gelukt deze site automatisch te bookmarken. Voeg deze site handmatig toe via uw browser');
		} 
	}
	
}
