function selectradio(id)
{

document.getElementById('radio1').style.display = 'none';
        document.getElementById('radio2').style.display = 'none';
        document.getElementById('radio3').style.display = 'none';
		document.getElementById('radio4').style.display = 'none';
		document.getElementById('radio5').style.display = 'none';
		document.getElementById('radio6').style.display = 'none';
        // Display the requested radio
        document.getElementById
                ('radio' + id).style.display = 'block';
	}
	

function openpopup(stationId){
	//alert(stationId);
var url = "http://radiotime.com/WebTuner.aspx?StationId=" + stationId;
//alert(url);
var winpops=window.open(url,"","width=500,height=250,scrollbars=no, resizable=no, toolbar=no, screenX=0, screenY=0, status=no")
}
