
var live = false;
function ChangeLive()
{
	if(live)
	{
		live=false;
		document.getElementById('live_box').innerHTML = '';
		document.getElementById('live_image').style.backgroundImage = "url('lib/radiomaria/area/radiomaria/img/live_off.gif')";
	}
	else
	{
		live=true;
		document.getElementById('live_box').innerHTML = '<object id=MMPlayer1 codebase=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701 type=application/x-oleobject height=0 width=0 align=absmiddle classid=CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95><param name="FileName" value="http://87.233.180.73:8000"><param name="ShowControls" value="0"><param name="ShowStatusBar" value="0"><param name="ShowDisplay" value="0"><param name="DefaultFrame" value="Slide"><param name=”PlayCount” value="1"><param name="Autostart" value="1"><embed src="http://87.233.180.73:8000" width=0 height=0 autostart=1 loop=0 align="absmiddle" type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/download/default.asp" showcontrols=1 showdisplay=0 showstatusbar=1 ></embed></object>';
		document.getElementById('live_image').style.backgroundImage = "url('lib/radiomaria/area/radiomaria/img/live_on.gif')";
	}
}

function renderList(id)
{
	if(document.getElementById('lijst_title_'+id).className == 'lijst_title')
	{
		document.getElementById('lijst_title_'+id).className = 'lijst_title_out';
		document.getElementById('lijst_content_'+id).style.display = 'block';
	}
	else
	{
		document.getElementById('lijst_title_'+id).className = 'lijst_title';
		document.getElementById('lijst_content_'+id).style.display = 'none';		
	}
}
