	var save_song_elem = null;
	var save_song_html = "";
	
	function ListenTo(song_id, play_url)
	{
		if (save_song_elem != null)
			StopListen();
			
		save_song_elem = document.getElementById(song_id);
		if (save_song_elem == null)
			return;
			
		save_song_html = save_song_elem.innerHTML; 

		window.status="ومُْ";
		save_song_elem.innerHTML = "<a href='javascript:StopListen()'><img border=0 src=http://www.charts.co.il/loading.gif></a>";
		document.getElementById("mPlay").filename = play_url;
	}
	
	function StartPlaying()
	{
		if (save_song_elem != null)
		{
			save_song_elem.innerHTML = "<a href='javascript:StopListen()'><img border=0 src=http://www.charts.co.il/stop2.jpg></a>";
		}
	}
	
	function StopListen()
	{
		document.getElementById("mPlay").filename = "";
		
		if (save_song_elem != null)
		{
			save_song_elem.innerHTML = save_song_html;
			save_song_elem = null;
		}
	}