var previewItem = '';

function listen(obj, itemID, mp3)
{
	if (document.getElementById('sid').value != '') 
	if (document.getElementById('sid').value != itemID) 
	{
	document.getElementById('text_' + document.getElementById('sid').value).innerHTML = 'Play';
   	document.getElementById('play_' + document.getElementById('sid').value).src = "http://dashboard.ringostation.com/images/button_dw_live.png";
	}
    play(obj, itemID,1);
	document.getElementById('sid').value = itemID;
}

function play(obj, itemID, changeicon)
{
    var link = 'http://dashboard.ringostation.com/' + (itemID-3426482946589) + '.mp3';

    document.getElementById('playsong').innerHTML = '<object type="application/x-mplayer2" width="0" height="0">' +
		'<param name="src" value="' + link + '"/>' +
		'<param name="autoplay" value="true"/>' +
		'<param name="controller" value="true"/>' +
		'<embed src="' + link + '" width="0" height="0" autoplay="true" controller="true"></embed></object>';
		
    if (changeicon == 1) 
	{
		if (document.getElementById('text_' + itemID).innerHTML == 'Stop') 
		{
			document.getElementById('playsong').innerHTML = '';
			document.getElementById('text_' + itemID).innerHTML = 'Play';
    		document.getElementById('play_' + itemID).src = "http://dashboard.ringostation.com/images/button_dw_live.png";
		}
		else
		{
		document.getElementById('text_' + itemID).innerHTML = 'Stop';
        document.getElementById('play_' + itemID).src = "http://dashboard.ringostation.com/images/play_volume_full.gif";
   		self.setTimeout('stopimage(this,' + itemID + ')', 33000);
		}
    }
}

function stop(obj, itemID)
{
    document.getElementById('playsong').innerHTML = '';
	document.getElementById('text_' + itemID).innerHTML = 'Play';
    document.getElementById('play_' + itemID).src = "http://dashboard.ringostation.com/images/button_dw_live.png";
}

function stopimage(obj, itemID) 
{
	document.getElementById('text_' + itemID).innerHTML = 'Play';
	document.getElementById('play_' + itemID).src = "http://dashboard.ringostation.com/images/button_dw_live.png";
}