function listLabels(root){
    var baseURL = 'http://www.brandflakesforbreakfast.com/labels/';
    var baseHeading = "";
    var isFTP = false;
    var entry = root.feed.entry;
    for (i in entry) {
    	category = entry[i].category;
	    labelSort = new Array();
    	for(p in category){ labelSort[labelSort.length] = [category[p].term]; }
    	labelSort.sort();
	    for (var r=0; r < labelSort.length; r++){
			if (labelSort[r] != "") { document.write("<option value='"+ baseURL + encodeURIComponent(labelSort[r])+'.html' +"'>"+labelSort[r]+"</option>\n"); }
    	}
    }
}

function go(selectName)
{
	box = eval("document.forms[0]."+selectName);
	destination = box.options[box.selectedIndex].value;
	if (destination) location.href = destination;
}