function displayLexema(info, obj, num, bk) {
	var tmpdata = new Array ;
	var l = obj.split("-");
	var place = document.getElementById('l-' + bk) ;
	if (info == 'none') {
		place.innerHTML = '' ;
	   } else {
	   	if (l[0] == 'g') {
			if (num > 0) {
	   			tmpdata = g_lexdata[num].split(/\t/) ;
			   }
		   } else if (l[0] == 'h') {
		   	if (num > 0) {
				tmpdata = h_lexdata[num].split(/\t/) ;
			   }
		   } else {
		   	if (num > 0) {
				tmpdata = a_lexdata[num].split(/\t/) ;
			   }
		   }
		if (l[0] == 'g') {
			place.innerHTML = '<b>Lexical Info:</b>&nbsp;' + ((num != '') ? '<a href="/lex/grk/gwview.cgi?n=' + num + '">#' : 'none') + num + '</a><br />' ;
		   } else if (l[0] == 'h') {
		   	place.innerHTML = '<b>Lexical Info:</b>&nbsp;' + ((num != '') ? '<a href="/lex/heb/hwview.cgi?n=' + num + '">#' : 'none') + num + '</a><br />' ;
		   } else {
		   	place.innerHTML = '<b>Lexical Info:</b>&nbsp;' + ((num != '') ? '<a href="/lex/ara/awview.cgi?n=' + num + '">#' : 'none') + num + '</a><br />' ;
		   }

		if (l[0] == 'g') {
		   	if (info == 'N-PRI') {
				place.innerHTML = place.innerHTML + "<b>" + LUndeclined[info] + "</b" ;
			   } else if (info == 'N-NUI') {
				place.innerHTML = place.innerHTML + "<b>" + LUndeclined[info] + "</b" ;
			   } else if (info == 'N-LI') {
				place.innerHTML = place.innerHTML + "<b>" + LUndeclined[info] + "</b" ;
			   } else if (info == 'N-OI') {
				place.innerHTML = place.innerHTML + "<b>" + LUndeclined[info] + "</b" ;
			   } else {
				var lexarray = info.split("-");
				if (lexarray[0].length == 1) {
					if (lexarray[0] == 'V') {
						place.innerHTML = place.innerHTML + "<b>Verb</b>: " ;
						if (lexarray[1]) {
							var tvmarray = lexarray[1].split("");
							if (tvmarray.length == 4) {
								place.innerHTML = place.innerHTML + LTense[tvmarray[0] + tvmarray[1]] + "; " + LVoice[tvmarray[2]] + "; " + LMood[tvmarray[3]] ;
							   } else {
							   	place.innerHTML = place.innerHTML + LTense[tvmarray[0]] + "; " + LVoice[tvmarray[1]] + "; " + LMood[tvmarray[2]] ;
							   }
						   }
						if (lexarray[2]) {
							var pcngarray = lexarray[2].split("");
							if (pcngarray.length == 2) {
								place.innerHTML = place.innerHTML + "; " + LPerson[pcngarray[0]] + "; " + LNumber[pcngarray[1]] ;
							   } else {
								place.innerHTML = place.innerHTML + "; " + LCase[pcngarray[0]] + "; " + LNumber[pcngarray[1]] + "; " + LGender[pcngarray[2]] ;
							   }
						   }
						if (lexarray[3]) {
							place.innerHTML = place.innerHTML + "; " + LExtra[lexarray[3]] ;	
						   }
				   	   } else {
						place.innerHTML = place.innerHTML + "<b>" + LPrefix[lexarray[0]] + "</b>" ;
						if (lexarray[1]) {
							var pcngarray = lexarray[1].split("") ;
							place.innerHTML = place.innerHTML + "; " + LCase[pcngarray[0]] + "; " + LNumber[pcngarray[1]] + "; " + LGender[pcngarray[2]] ;
						   }
						if (lexarray[2]) {
							place.innerHTML = place.innerHTML + "; " + LSuffix[lexarray[2]] ;
						   }
					   }
				   } else {
				   	place.innerHTML = place.innerHTML + "<b>" + LUndeclined[lexarray[0]] + "</b>: " ;
				   }
			   }
		   }
		if (tmpdata[0]) {
			place.innerHTML = place.innerHTML + ' from <span class="lang-' + ((l[0] == 'g') ? 'grk' : 'heb') + '">' + tmpdata[0] + '</span>' + ' (' + tmpdata[2] + ') with the following meaning(s): ' + tmpdata[3] + '<br>' ;
		   }
	   }
   }

var LTense = new Array();
   LTense["P"] = "Present";
   LTense["I"] = "Imperfect";
   LTense["F"] = "Future";
   LTense["2F"] = "Second Future";
   LTense["A"] = "Aorist"
   LTense["2A"] = "Second Aorist";
   LTense["R"] = "Perfect";
   LTense["2R"] = "Second Perfect";
   LTense["L"] = "Pluperfect";
   LTense["2L"] = "Second Pluperfect";
   LTense["X"] = "Adverbial Imperative";

var LVoice = new Array();
   LVoice["A"] = "Active";
   LVoice["M"] = "Middle";
   LVoice["P"] = "Passive";
   LVoice["E"] = "Either Middle or Passive";
   LVoice["D"] = "Middle Deponent";
   LVoice["O"] = "Passive Deponent";
   LVoice["N"] = "Middle or Passive Deponent";
   LVoice["Q"] = "Impersonal Active";
   LVoice["X"] = "No Voice Stated";

var LMood = new Array();
   LMood["I"] = "Indicative";
   LMood["S"] = "Subjunctive";
   LMood["O"] = "Optative";
   LMood["M"] = "Imperative";
   LMood["N"] = "Infinitive";
   LMood["P"] = "Participle";
   LMood["R"] = "Imperative-Sense Participle";

var LExtra = new Array();
   LExtra["M"] = "Middle significance";
   LExtra["C"] = "Contracted form";
   LExtra["T"] = "Transitive";
   LExtra["A"] = "Aeolic";
   LExtra["ATT"] = "Attic";
   LExtra["AP"] = "Apocopated form";
   LExtra["IRR"] = "Irregular or Impure form";

var LPerson = new Array();
   LPerson["1"] = "First Person";
   LPerson["2"] = "Second Person";
   LPerson["3"] = "Third Person";

var LNumber = new Array();
   LNumber["S"] = "Singular";
   LNumber["P"] = "Plural";

var LGender = new Array();
   LGender["M"] = "Masculine";
   LGender["F"] = "Feminine";
   LGender["N"] = "Neuter";

var LCase = new Array();
   LCase["N"] = "Nominative";
   LCase["G"] = "Genitive";
   LCase["D"] = "Dative";
   LCase["A"] = "Accusative";
   LCase["V"] = "Vocative";

var LUndeclined = new Array();
   LUndeclined["ADV"] = "Adverb or Adverb and Particle combined";
   LUndeclined["CONJ"] = "Conjunction or Conjunctive Particle";
   LUndeclined["COND"] = "Conditional Particle or Conjunction";
   LUndeclined["PRT"] = "Particle, Disjunctive Particle";
   LUndeclined["PREP"] = "Preposition";
   LUndeclined["INJ"] = "Interjection";
   LUndeclined["ARAM"] = "Aramaic transliterated word (indeclinable)";
   LUndeclined["HEB"] = "Hebrew transliterated word (indeclinable)";
   LUndeclined["N-PRI"] = "Indeclinable Proper Noun";
   LUndeclined["N-NUI"] = "Indeclinable Numeral (Noun)";
   LUndeclined["N-LI"] = "Indeclinable Letter (Noun)";
   LUndeclined["N-OI"] = "Indeclinable Noun of Other type";

var LPrefix = new Array();
   LPrefix["N"] = "Noun";
   LPrefix["A"] = "Adjective";
   LPrefix["R"] = "Relative Pronoun";
   LPrefix["C"] = "Reciprocal Pronoun";
   LPrefix["D"] = "Demonstrative Pronoun";
   LPrefix["T"] = "Definite Article";
   LPrefix["K"] = "Correlative Pronoun";
   LPrefix["I"] = "Interrogative Pronoun";
   LPrefix["X"] = "Indefinite Pronoun";
   LPrefix["Q"] = "Correlative or Interrogative Pronoun";
   LPrefix["F"] = "Reflexive pronoun";
   LPrefix["S"] = "Possessive pronoun";
   LPrefix["P"] = "Personal pronoun";

var LSuffix = new Array();
   LSuffix["S"] = "Superlative (used only with adjectives and some adverbs)";
   LSuffix["C"] = "Comparative (used only with adjectives and some adverbs)";
   LSuffix["ABB"] = "Abbreviated form (used only with various numerals)";
   LSuffix["I"] = "Interrogative";
   LSuffix["N"] = "Negative (used only with particles as PRT-N)";
   LSuffix["C"] = "Contracted form, or two words merged by crasis";
   LSuffix["ATT"] = "Attic Greek form";
   LSuffix["P"] = "Particle attached (with relative pronoun)";
