// JavaScript Document
var player;
function generatePlayer(song,divID)
{
	player = new SWFObject("mp3player.swf", "line", "334", "70", "7");
	player.addVariable("autostart","true");
	player.addVariable("file",song);
	player.addVariable("showeq","true");

	player.addVariable("backcolor","0x00000");
	player.addVariable("frontcolor","0xEECCDD");
	player.addVariable("lightcolor","0xCC0066");
	
	player.addVariable("repeat","false");
	player.addVariable("showdigits","true");
	player.addVariable("showdownload","true");
	player.write(divID);
}

function playSong(song, songTitle) { 
	generatePlayer( song, "thePlayer" ); 
	document.getElementById("songTitle").innerHTML = "Playing '<b>" + songTitle + "</b>' ...";
}
