function playtune(source,path) {

playsource='http://rivercitystringquartet.com/'+path+source;
nw=window.open(playsource,'','status,toolbar,menubar,resizable,scrollbars,width=300,height=100');
nw.focus();

}
function savetune (source,path){

playsource='http://rivercitystringquartet.com/'+path+source;
newWindow = window.open(playsource,null,"top=100000,left=100000");
newWindow.document.execCommand("SaveAs",null,source);
newWindow.close();
}

function setupTune(mp3file,filepath,listing) {
document.writeln("<a href=\"Javascript: playtune('"+mp3file+"','"+filepath+"');\"> ");
document.writeln('<img src="http://rivercitystringquartet.com/images/speaker.gif" border=0 WIDTH="28" HEIGHT=  "24" ALIGN="MIDDLE" NATURALSIZEFLAG="3"></a> ');
document.writeln(listing+' &nbsp;');
document.writeln("<a href=\"http://rivercitystringquartet.com/download.php?name="+mp3file+"&path="+filepath+mp3file+"\">");
document.writeln('<img src="http://rivercitystringquartet.com/images/save.gif" border=0 WIDTH="35" HEIGHT=  "16" ALIGN="MIDDLE" NATURALSIZEFLAG="3"></a>');
}

function instructions() {
document.write('<table border=1 bgcolor=#e3e3e3><tr><td align=center>To play the recording in your browser, click on the speaker icon: ');
document.write('<img src="http://rivercitystringquartet.com/images/speaker.gif" border=0 WIDTH="28" HEIGHT=  "24" ALIGN="MIDDLE" NATURALSIZEFLAG="3">');
document.write('<br>To download the MP3 recording to your computer, click on the save icon: ');
document.write('<img src="http://rivercitystringquartet.com/images/save.gif" border=0 WIDTH="35" HEIGHT=  "16" ALIGN="MIDDLE" NATURALSIZEFLAG="3"></td></tr></table>');
}


