/*	Industry Sector Links*/var industrySectorLinksDocsAjaxReq;var industrySectorLinksDocs = '';var industrySectorLinksStart = 1;var industrySectorLinksTotal = 0;function showindustrySectorLinksDocuments() {	var url = 'EVIPLinks?ReadViewEntries&start=' + '1' + '&count=' + '16' + '&restricttocategory=' + IndustrySectorUNID + '&outputformat=JSON' + '&ms='+ new Date().getTime();	industrySectorLinksDocsAjaxReq = createAJAXRequest(url, industrySectorLinksDocsResponseFunction);	industrySectorLinksDocsAjaxReq.send(null);	}function industrySectorLinksDocsResponseFunction() {	if (industrySectorLinksDocsAjaxReq.readyState === 4){		if (industrySectorLinksDocsAjaxReq.status === 200) {			eval("industrySectorLinksDocs = " + industrySectorLinksDocsAjaxReq.responseText );			outputindustrySectorLinksDocuments();		} else alert("AJAX failed with error: \n" + industrySectorLinksDocsAjaxReq.status + " - " + industrySectorLinksDocsAjaxReq.statusText);	}	}function outputindustrySectorLinksDocuments() {	if (typeof industrySectorLinksDocs != "object") return(alert("data not loaded [" + typeof industrySectorLinksDocs + "]"))		industrySectorLinksTotal = parseInt(industrySectorLinksDocs['@toplevelentries']);	var ob = newTable( document.getElementById( "IndustrySectorLinksOutput" ))	for(var i=0;i<industrySectorLinksDocs.viewentry.length;i++){		var rob = ob.appendChild(nDOMObj(null,"tr")) 		var tob = rob.appendChild(nDOMObj(null,"td","","","","","","","<b>" +getViewColData (industrySectorLinksDocs.viewentry[i], "Title") + "</b> "  +  getViewColData (industrySectorLinksDocs.viewentry[i], "Comments"),"width:250;padding:3 10 7 0;vertical-align:top;font-size:11px;"))		bsob.adv(tob,{ n: getViewColData (industrySectorLinksDocs.viewentry[i], "URL")})		}	}	
