function displayArrayList(arrDisplay) {
	var mlen=arrDisplay.length;
	var arrVisibility =new Array();
	var strArguments=location.search;
	var nMode=2;
	strArguments=strArguments.substring(1,strArguments.length);

	var arrArguments=strArguments.split("&");
	var arrVis=arrArguments[0].split(".");

	for (i=0;i<mlen;i++) {
		(arrVis[i]=="1") ? arrVisibility[i]=true : arrVisibility[i]=false;
	}

	for (m=0;m<mlen;m++) {

		var strURL= "ixslinksf.htm?";
		var nLength=arrVisibility.length;
		var blnValue=false;

		for (i=0;i<nLength;i++) {
			blnValue=arrVisibility[i];

			switch (nMode) {
			case 1:
				if (i==m) {
					blnValue=!blnValue
				}
				(i+1)<nLength ? strSep="." : strSep="" ;
				blnValue ? strURL+="1" + strSep : strURL+="0" + strSep ;
				break;
			case 2:
				(i+1)<nLength ? strSep="." : strSep="" ;
				if (i==m) {
					strURL+="1" + strSep;
				} else {
					strURL+="0" + strSep;
				}
				break;
			}
		}
		
		switch(arrDisplay[m][1]) {
		case "M":
			!arrVisibility[m] ? strAction=" öffnen..." : strAction=" wieder schliessen..." ;
			!arrVisibility[m] ? strPrefix=arrDisplay[m][2] : strPrefix=arrDisplay[m][3] ;

			// Tabellenkopf für einen weiteren Menupunkt ausgeben...
			document.writeln("<div align=\"left\"><table class=\"menu\"><tr><td class=\"menutitle\"><a class=\"menutitle\" href=\"" + strURL + "\" onmouseover=\"window.status='>> " + arrDisplay[m][0] + strAction + "';return true;\" onmouseout=\"window.status='';return true;\">" + strPrefix + " " + arrDisplay[m][0] + "</a></td></tr>");

			// Folgender Code wird ausgeführt, wenn das Menu nicht sichtbar ist.
			if (!arrVisibility[m]) {
				document.writeln("</table></div>");
				continue;
			}

			var smlen=arrDisplay[m].length-1;

			for(s=4;s<=smlen;s++) {
				document.writeln("<tr><td class=\"menu\"><a class=\"menu\" href=\"" + arrDisplay[m][s][1] + "\" target=\"" + arrDisplay[m][s][2] + "\">- " + arrDisplay[m][s][0] + "</a></td></tr>");
			}

			document.writeln("</table></div>");
			break;
		case "L":
			strAction="in Hauptframe laden...";
			strPrefix=arrDisplay[m][2];

			// Tabellenkopf für einen weiteren Menupunkt ausgeben...
			document.writeln("<div align=\"left\"><table class=\"menu\"><tr><td class=\"menutitle\"><a target=\"" + arrDisplay[m][4] + "\" class=\"menutitle\" href=\"" + arrDisplay[m][3] + "\" onmouseover=\"window.status='>> " + arrDisplay[m][0] + strAction + "';return true;\" onmouseout=\"window.status='';return true;\">" + strPrefix + " " + arrDisplay[m][0] + "</a></td></tr>");
			document.writeln("</table></div>");
			break;
		}
	}
}
