diff --git a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/VocabularyManager/VocabularyManagerView.js b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/VocabularyManager/VocabularyManagerView.js
index c11a40f590a16b153bc1068d4df477bb97342225..4369b9f5dafe95aa4ebd0c8d1f66dc5934fdc292 100644
--- a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/VocabularyManager/VocabularyManagerView.js
+++ b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/VocabularyManager/VocabularyManagerView.js
@@ -18,7 +18,8 @@ function VocabularyManagerView(vocabularyManagerController, vocabularyManagerMod
 	this._vocabularyManagerController = vocabularyManagerController;
 	this._vocabularyManagerModel = vocabularyManagerModel;
 	this._dataGridContainer = $("<div>");
-		
+	this._subtitle = $("<legend>");
+	
 	this.repaint = function($container) {
 		$container.empty();
 		
@@ -32,7 +33,8 @@ function VocabularyManagerView(vocabularyManagerController, vocabularyManagerMod
 			"onsubmit" : ""
 		});
 		
-		$containerColumn.append($("<h1>").append(" Vocabulary Viewer"));
+		$containerColumn.append($("<h1>").append("Vocabulary Viewer"));
+		$containerColumn.append(this._subtitle);
 		this._showVocabularies();
 		$containerColumn.append(this._dataGridContainer);
 		$container.append($containerColumn);
@@ -71,7 +73,8 @@ function VocabularyManagerView(vocabularyManagerController, vocabularyManagerMod
 		var dataGrid = new DataGridController(null, columns, getDataList, rowClick, true, "VOCABULARY_TABLE");
 		dataGrid.init(this._dataGridContainer);
 		
-		this._dataGridContainer.prepend($("<legend>").append(" Vocabularies"));
+		this._subtitle.empty();
+		this._subtitle.append("Vocabularies List");
 	}
 	
 	this._showVocabulary = function(vocabulary) {
@@ -106,6 +109,7 @@ function VocabularyManagerView(vocabularyManagerController, vocabularyManagerMod
 		var dataGrid = new DataGridController(null, columns, getDataList, null, true, "VOCABULARY_TERMS_TABLE");
 		dataGrid.init(this._dataGridContainer);
 		
-		this._dataGridContainer.prepend($("<legend>").append(" Terms from vocabulary " + vocabulary.code));
+		this._subtitle.empty();
+		this._subtitle.append("Terms from vocabulary " + vocabulary.code);
 	}
 }
\ No newline at end of file