function sortYahooIds(){}
sortYahooIdsVars = {
	sortArrCnt: 0,
	sortArray: new Array()
}
sortYahooIds.constructSortObj = function (sortId, name, id){
	this.sortId = sortId;
	this.name = name;
	this.id = id;
}
sortYahooIds.constructSortArray = function(sortId, name, id){
	sortYahooIdsVars.sortArray.push(new sortYahooIds.constructSortObj(sortId, name, id));
	sortYahooIdsVars.sortArrCnt++;
}
sortYahooIds.showSortArray = function(showWhat){
	c = 1;
	x = 0;
	collect = '<br><table width="100%" cellspacing="10">';
	collect += '<tr>'
	for(i in sortYahooIdsVars.sortArray){
		if(sortYahooIdsVars.sortArray[i].sortId == showWhat){
			collect += '<td><a href="'+sortYahooIdsVars.sortArray[i].id+'.html">' + sortYahooIdsVars.sortArray[i].name + '</a></td>';
			if(c % sortArrayCols == 0){
				collect += '</tr>'
			}
			c++;
			x++;
		}
	}
	if(x == 0){
		collect += '<td class="sortNoItems">No Items starting with the letter '+showWhat.toUpperCase();+'</td>';
	}
	collect += '</tr>'
	collect += '</table>'
	document.getElementById('sortContent').innerHTML = collect
}
