function printSchedule(band)

{

	var schedule = new Array();

	var i=0;

	schedule = setSchedule();
	
	

	for (i=0; i<schedule.length; i++)

	{
		var group = new Array();
		group=schedule[i]["Groups"];
		for (q=0; q<group.length; q++)
		{
			if (group[q] == band)
	
			{
				var output = "";
	
				output = "<tr>";
	
				
	
				output += '<td class="textbase" id="d' + i + '"><a target="newWindow" href=' + schedule[i]["Href"] +'>'+ schedule[i]["Dates"] + '</a></td>';
	
				
	
				output += '</tr>';
	
				
	
				document.write(output);	
	
			}
		}

		

	}

	

	output = '<tr><td colspan="3" align="center" class="textbases">Last updated:- ' + lastupdate + '</td></tr>';

document.write(output);

}

