/*list1=new Array();
list1.push("All Season Songs","Style","Time","Piano","Guitar","Fiddle","Banjo");
list1.push("Bringing in the Sheaves","","2:50","Y","","","");
list1.push("Eagle Song","","2:38","","","","");
list1.push("Get All Excited","","","","","","");
list1.push("God on the Mountain","","3:40","","","","");
list1.push("Greater Is He that Is In Me","","","Y","","","");
list1.push("In the Light","Acoustic Rock","","","","","");
list1.push("In The Presence Of Jehovah","","","","","","");
list1.push("Just A Closer Walk With Thee","Blue Grass","","Y","","Y","");
list1.push("Make Me An Instrument of Your Peace","","","Y","","","");
list1.push("Mary Was the First One","Southern Gospel","","","","","");
list1.push("Medley","Southern Gospel","4:30","","","","");
list1.push("Narrow Way","","4:07","Y","","Y","");
list1.push("O Pilgrim Come","","","","","Y","");
list1.push("On Jordan Stormy Banks (Hymn)","","","Y","","","");
list1.push("Sing a Song / I'd Like to Teach the World","","","","","","");
list1.push("Sweet Beulah Land","","","Y","","","");
list1.push("Swing Low (Partial Group)","","","","","","");
list1.push("Take the Name of Jesus (Cindy's Arrangement)","","","","","","");
list1.push("The Lord Bless You and Keep You","","","","","","");
list1.push("The Lord's Prayer","","","","","","");
list1.push("The Water is Wide","","","Y","","","");
list1.push("Were You There (Hymn)","","","","","","");
list1.push("When We All Get Together","Southern Gospel","2:50","","","","");
list1.push("Wonderful Words of Life","Southern Gospel","3:00","","","","");
list2=new Array();
list2.push("Christmas Songs","Style","Time","Piano","Guitar","Fiddle","Banjo");
list2.push("Blue Grass White Snow","Blue Grass","4:00","","","","");
list2.push("Carol of the Bells","Traditional","1:30","","","","");
list2.push("Child In a Manger (Hymn)","Traditional","","","","","");
list2.push("Christmas Time's A Comin","Blue Grass","3:00","","","","");
list2.push("Do You Hear What I Hear","","","","","","");
list2.push("Go Tell It on the Mountain","","","","","","");
list2.push("It Came Upon A Midnight Clear","Traditional","","","","","");
list2.push("Light of the Stable","Contemporary","3:00","","","","");
list2.push("Lo How A Rose Ere Blooming","Traditional","1:30","","","","");
list2.push("Mary Was the First One","Southern Gospel","","","","","");
list2.push("O Beautiful Star of Bethlehem","Blue Grass","4:00","","","","");
list2.push("O Holy Night","Traditional","","","","","");
list2.push("O Little Town","Traditional","","","","","");
list2.push("Once In Royal David City","Traditional","3:00","","","","");
list2.push("Silent Night","Blue Grass","3:00","","","","");
list2.push("While By My Sheep","Traditional","1:00","","","","");
list3=new Array();
list3.push("Practiced Not Performed","","","","","","");
list3.push("Hallelujah What A Savior (Benoit)","","","","","","");
list3.push("Near the Cross (Benoit)","","","","","","");
list3.push("When I Fall In Love","","","","","","");
*/
function shortlist(list){
	n=list.length;
	k=n/9;
	document.write("<table border=0 cellpadding=0 cellspacing=0 style='font-size:10pt; font-family:Arial; vertical-align:top; text-indent:-10px; padding-left:10px;'>");
	i=0;
		document.write("<tr style='text-decoration:underline;'>");
		document.write("<td width=250px>"+list[i*9]+"</td>");
		document.write("<td width=100px>"+list[i*9+1]+"</td>");
		document.write("<td width=30px align=center>"+list[i*9+8]+"</td>");
		document.write("<tr>");
	for(i=1; i<k; i++){
		document.write("<tr>");
		document.write("<td width=250px>"+list[i*9]+"</td>");
		document.write("<td width=100px>"+list[i*9+1]+"</td>");
		document.write("<td width=30px align=center><a href='"+list[i*9+8]+"'>"+list[i*9+8]+"</a></td>");
		document.write("<tr>");
	}
	document.write("</table>");
}

function fulllist(list){
	n=list.length;
	k=n/9;
	document.write("<table border=0 cellpadding=0 cellspacing=0 style='font-size:10pt; font-family:Arial; vertical-align:top; '>");
	i=0;
		document.write("<tr style='text-decoration:underline;'>");
		document.write("<td width=250px style='text-indent:-10px; padding-left:10px;'>"+list[i*9]+"</td>");
		document.write("<td width=100px>"+list[i*9+1]+"</td>");
		document.write("<td width=30px align=center>"+list[i*9+2]+"</td>");
		document.write("<td width=30px align=center style='padding-left:2px;padding-left:2px;'>"+list[i*9+3].replace(' ','&nbsp;')+"</td>");
		document.write("<td width=30px align=center style='padding-left:2px;padding-left:2px;'>"+list[i*9+4]+"</td>");
		document.write("<td width=30px align=center style='padding-left:2px;padding-left:2px;'>"+list[i*9+5]+"</td>");
		document.write("<td width=30px align=center style='padding-left:2px;padding-left:2px;'>"+list[i*9+6]+"</td>");
		document.write("<td width=30px align=center style='padding-left:2px;padding-left:2px;'>"+list[i*9+7]+"</td>");
		document.write("<td width=30px align=center style='padding-left:2px;padding-left:2px;'>"+list[i*9+8]+"</td>");
		document.write("<tr>");
	for(i=1; i<k; i++){
		document.write("<tr>");
		document.write("<td width=250px style='text-indent:-10px; padding-left:10px;'>"+list[i*9]+"</td>");
		document.write("<td width=100px>"+list[i*9+1]+"</td>");
		minutes=list[i*9+2]*24;
		if(minutes==0){minutes=""}else{
			seconds=Math.round((minutes-Math.floor(minutes))*60);
			if(seconds<10){minutes=Math.floor(minutes)+":0"+seconds}else{minutes=Math.floor(minutes)+":"+seconds}
		}
		document.write("<td align=center>"+minutes+"</td>");
		document.write("<td align=center>"+list[i*9+3]+"</td>");
		document.write("<td align=center>"+list[i*9+4]+"</td>");
		document.write("<td align=center>"+list[i*9+5]+"</td>");
		document.write("<td align=center>"+list[i*9+6]+"</td>");
		document.write("<td align=center>"+list[i*9+7]+"</td>");
		document.write("<td><a href='"+list[i*9+8]+"'>"+list[i*9+8]+"</a></td>");
		document.write("<tr>");
	}
	document.write("</table>");
}
