function createBookmark(){
	title = 'Logogids.nl'; 
	url = 'http://www.logogids.nl';

	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	}else if( window.external ) { // IE Favorite
		try{
			window.external.AddFavorite( url, title); 
		}
		catch(e){
			alert('Druk op CTRL+D om Logogids.nl toe te voegen aan uw favorieten.')
		}
	}else if(window.opera && window.print) { // Opera Hotlist
		return true;
	}else{
		alert('Druk op CTRL+D om Logogids.nl toe te voegen aan uw favorieten.')
	}
} 
