/*	Best of Web*/var bestOfWebDocsAjaxReq;var bestOfWebDocs = '';var bestOfWebStart = 1;var bestOfWebTotal = 0;function showbestOfWebDocuments() {	var tArea = document.getElementById("BestOfWebOutput");	var url = 'EVIPBestofWeb?ReadViewEntries&start=' + '1' + '&count=' + '9' + '&restricttocategory=' + IndustrySectorUNID + '&outputformat=JSON' + '&ms='+ new Date().getTime();	bestOfWebDocsAjaxReq = createAJAXRequest(url, bestOfWebDocsResponseFunction);	bestOfWebDocsAjaxReq.send(null);	}function bestOfWebDocsResponseFunction() {	if (bestOfWebDocsAjaxReq.readyState === 4){		if (bestOfWebDocsAjaxReq.status === 200) {			eval("bestOfWebDocs = " + bestOfWebDocsAjaxReq.responseText );			outputbestOfWebDocuments();		} else alert("AJAX failed with error: \n" + bestOfWebDocsAjaxReq.status + " - " + bestOfWebDocsAjaxReq.statusText);	}	}function outputbestOfWebDocuments() {	if (typeof bestOfWebDocs != "object") return(alert("data not loaded [" + typeof bestOfWebDocs + "]"))	bestOfWebTotal = parseInt(bestOfWebDocs['@toplevelentries']);	if  ( typeof (bestOfWebDocs.viewentry) == "undefined") return	var ob = newTable( document.getElementById( "BestOfWebOutput" ))	for(var i=0;i<bestOfWebDocs.viewentry.length;i++){		var rob = ob.appendChild(nDOMObj(null,"tr")) 		var tob = rob.appendChild(nDOMObj(null,"td","","","","","","","<h3>" +getViewColData (bestOfWebDocs.viewentry[i], "Title") + "</h3>"  			+  "<span class= source>" + getViewColData (bestOfWebDocs.viewentry[i], "Source") + "</span>&nbsp;<span class=storytime>" + getViewColData (bestOfWebDocs.viewentry[i], "DateText")+"</span>","vertical-align:top;font-size:11px;"))		bsob.adv(tob,{ n: getViewColData (bestOfWebDocs.viewentry[i], "URL")})	}	return}