//*****************************************************
// R.Coellen Netzwerktechnik   
// 4.2004
//*****************************************************
function _doHelp() {
	var destination;
	var field;
	var desWindow;
	destination = event.srcElement.HelpTopic;
	if (destination== null){
		destination = 'main.htm';
	}
	field = event.srcElement.name;
	if (field!= null){
		destination += '#' + field;
	}
	// -->' Hilfe'   "width=310 height=400"
	desWindow = window.open ( 'help/' + destination );
	desWindow.focus();
	window.event.returnValue = false;
}
