
function help_show(h_array) {
	if (h_array.length > 0) {
		var h_head = h_array[0];
		var h_text = h_array[1];
	} else {
		var h_head = "Überschrift";
		var h_text = "Dies ist (k)ein Hilfetext";
	}
	document.getElementById('dynamic').innerHTML = "<div class='window' style='position: absolute; z-index: 100; top: 160px; left: 160px; right: 160px; width: 330px;'><div class='box'><div class='head' width='100%'><span style='float:right;'><a class='nav2plus' href='javascript:help_close();'>X</a></span>Hilfe: " + h_head + "</div><div class='row'>" + h_text + "</div></div></div>";
}

function help_close() {
	document.getElementById('dynamic').innerHTML = '';
}
