	
	
	
	function loadTraderList(tList){
		var tl = document.getElementById('traderList');
		
		if(tl)
		{
			tl.innerHTML = '';
			var t = document.createElement('table');
			t.id = 'traderTable';
			var th = document.createElement('thead');
			var tb = document.createElement('tbody');
			for(var i = 0;i<tList.length;i++){
					if(i == 0){
						var tr = createHeaderRow(tList[i]);
						th.appendChild(tr);
					}else{
						var tr = createTableRow(tList[i],i,3,4);
						tb.appendChild(tr);
					}
				}
			t.appendChild(th);
			t.appendChild(tb);
			tl.appendChild(t);	
			}
		}
	
