
/* Link zum Aufruf */
/*  <img id="helpItem_01"  src="fileadmin/Templates/media/images/layout/helpBox.png" title="Suchanfrage speichern" alt="Suchanfrage speichern" style="cursor:help;"  onClick="javascript: showHelpBox('helpBox_01','helpItem_01')" /> */



function showHelpBox(helpId, helpItem){
	var innerHelpId = document.getElementById(helpId);
	innerHelpId.style.display = 'block';  
	document.getElementById(helpItem).onclick = function() {  hideHelpBox(helpId,helpItem); };
}

function hideHelpBox(helpId2, helpItem2) {
	var innerHelpId2 = document.getElementById(helpId2);
	document.getElementById(helpItem2).onclick = function() {  showHelpBox(helpId2,helpItem2); };
	innerHelpId2.style.display = 'none';  
}
