Index: /views/admin/form/text.phtml
===================================================================
--- /views/admin/form/text.phtml	(revision 6462)
+++ /views/admin/form/text.phtml	(revision 6463)
@@ -15,4 +15,5 @@
 				<a href="#" data-wpsg-tip="<?php echo $this->view['field_config']['help']; ?>" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=<?php echo $this->view['field_config']['help']; ?>" class="glyphicon glyphicon glyphicon-question-sign form-control-feedback" aria-hidden="true"></a>
 			<?php } ?>
+            
 		</div>
 	</div>
Index: /views/admin/konfiguration.phtml
===================================================================
--- /views/admin/konfiguration.phtml	(revision 6462)
+++ /views/admin/konfiguration.phtml	(revision 6463)
@@ -39,6 +39,5 @@
 				<?php wpsg_drawForm_TextStart(); ?>		
 				<?php echo WPSG_VERSION; ?>&nbsp;<a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&amp;subaction=allgemein&amp;do=update&amp;submit=1&amp;noheader=1"><?php echo __("Aktualisieren", "wpsg"); ?></a>
-				<a rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=DBUpdate" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=DBUpdate" class="wpsg_glyphicon_right glyphicon glyphicon-question-sign"></a>
-				<?php echo wpsg_drawForm_TextEnd(__('Installierte DB Version', 'wpsg')); ?>	
+				<?php echo wpsg_drawForm_TextEnd(__('Installierte DB Version', 'wpsg'), array('help' => 'DBUpdate')); ?>	
 				<?php } ?>
 				
Index: /views/js/admin.js
===================================================================
--- /views/js/admin.js	(revision 6462)
+++ /views/js/admin.js	(revision 6463)
@@ -148,4 +148,6 @@
 }
 
+	var po; 
+
 	function wpsg_ajaxBind()
 	{
@@ -154,8 +156,24 @@
 		jQuery('*[data-wpsg-tip]').on('click', function() { 
 
-			jQuery(this).off('click').on('click', function() { return false; } );
+			//jQuery(this).off('click').on('click', function() { return false; } );
  
-			var po = this;
-
+			if (typeof po === "object")
+			{
+				
+				if (po != this) jQuery(po).popover('hide');
+				
+			}
+			
+			po = this;
+			
+			if (jQuery(this).hasClass('activated'))
+			{
+								
+				jQuery(this).popover('show');
+				
+				return false;
+				
+			}
+			
 			jQuery(this).popover( {
 				'html': true,
@@ -181,4 +199,6 @@
 			} );
 			 
+			jQuery(this).addClass('activated');
+			
 			return false;
 			
@@ -203,4 +223,10 @@
 
         } );
+		
+		jQuery("html,body").on("click touchstart", function() {
+	
+			if (typeof po === "object") jQuery(po).popover('hide');
+						
+		});		
 
 		jQuery('.wpsg_showhide_filter').bind('click', function() { 
