function writeDropdown(){
//document.writeln("<option selected>-- Select --</option>");
	budget=budget.sort(byAgency);
	for(var i=0;i<budget.length;i++){
		document.writeln("<option>"+budget[i][2]+"</option>");
	}
}

function byAgency(a, b) {
    var x = a[2].toLowerCase();
    var y = b[2].toLowerCase();
    return ((x < y) ? -1 : ((x > y) ? 1 : 0));
}

function displayData(theIndex){
	var theText="";
	if(theIndex>0){
		theText='<table cellspacing="3" cellpadding="5" border="0" width="100%"><tr valign="bottom">';
		for(var i=0;i<budgetheading[0].length;i++){
			theText=theText+'<td bgcolor="d7dee4" width="35%" align="right">'+budgetheading[0][i]+'</td><td width="65%">'+budget[theIndex-1][i]+'</td></tr>';
		}
		//theText=theText+"";
		//for(var i=0;i<budget[theIndex-1].length;i++){
		//	theText=theText+'<td';
		//	if(i==1){
		//		theText=theText+' nowrap';
		//	}
		//	theText=theText+'>'';
		//}
		theText=theText+"</table>";
	}
	document.getElementById('theData').innerHTML=theText;
}