var newwindow;

function openPlayer(url)
{
	newwindow = window.open(url,'name','height=45, width=292');
	
	document.getElementById('radioEmbed').innerHTML='';
	document.getElementById('openPlayerLink').style.display='none';
	
	if(window.focus) 
	{
		newwindow.focus()
	}
}
