﻿// JScript File

function openPlayer(sname, stitle,folder)
{
	var theURL;
	theURL = folder + 'player.aspx?sname=' + sname + '&stitle=' + stitle	
	window.open(theURL,'AudioPlayer','status=yes,scrollbars=yes,width=525,height=200');
} 

function downloadSong(sname, folder)
{
	var theURL;
	theURL = folder + 'download_audio.aspx?sname=' + sname
	window.open(theURL,'AudioDownload','status=yes,scrollbars=yes,width=100,height=100');
} 