/*	Who's Who in the Industry*/var whosWhoDocsAjaxReq;var whosWhoDocs = '';var whosWhoStart = 1;var whosWhoTotal = 0;function showwhosWhoDocuments() {	var url = 'LUIPWhosWho?ReadViewEntries&start=' + '1' + '&count=' + '1' + '&restricttocategory=' + IndustrySectorUNID + '&outputformat=JSON' + '&ms='+ new Date().getTime();	whosWhoDocsAjaxReq = createAJAXRequest(url, whosWhoDocsResponseFunction);	whosWhoDocsAjaxReq.send(null);	}function whosWhoDocsResponseFunction() {	if (whosWhoDocsAjaxReq.readyState === 4){		if (whosWhoDocsAjaxReq.status === 200) {			eval("whosWhoDocs = " + whosWhoDocsAjaxReq.responseText );			outputwhosWhoDocuments();		} else	alert("AJAX failed with error: \n" + whosWhoDocsAjaxReq.status + " - " + whosWhoDocsAjaxReq.statusText);	}	}function outputwhosWhoDocuments() {	if (typeof whosWhoDocs != "object") return(alert("data not loaded [" + typeof whosWhoDocs + "]"))	whosWhoTotal = parseInt(whosWhoDocs['@toplevelentries']);	var k = 0;	var people = '';	var baseURL =  '/' + dbName + '/filterPersons1c?openview&restricttocategory=';	if (typeof whosWhoDocs.viewentry != "undefined") {		for (var i = 0; i < whosWhoDocs.viewentry.length; i++)	people = getViewColData(whosWhoDocs.viewentry[i], "PeopleList");;		var names = new Array();		names = people.split('#');		var ob = newTable( document.getElementById( "WhosWhoOutput" ))		var j=0		for(var i=0;i< names.length;i++){			if(i%2 == 0)	var rob = ob.appendChild(nDOMObj(null,"tr"))			var tob = rob.appendChild(nDOMObj(null,"td","","","","","","","","height:15;width:150;margin:14 0 0 0;vertical-align:top;font-size:11px;color:black;"))			tob.innerHTML = names[i]			bsob.adv(tob,{ l: baseURL + encodeURI(names[i])})		}		if(i%2 == 1)	 rob.appendChild(nDOMObj(null,"td","","","","","","","","height:15;width:150;margin:14 0 0 0;vertical-align:top;font-size:11px;color:black;"))	}}